Commit feec3f09 feec3f09103a08aec5f0b1a6ef9fb74f661b2991 by V Sreekanth

Log now has the step function name

1 parent 1fe9afcb
...@@ -1383,7 +1383,7 @@ Casper.prototype.runStep = function runStep(step) { ...@@ -1383,7 +1383,7 @@ Casper.prototype.runStep = function runStep(step) {
1383 /*jshint maxstatements:20*/ 1383 /*jshint maxstatements:20*/
1384 this.checkStarted(); 1384 this.checkStarted();
1385 var skipLog = utils.isObject(step.options) && step.options.skipLog === true, 1385 var skipLog = utils.isObject(step.options) && step.options.skipLog === true,
1386 stepInfo = f("Step %d/%d", this.step, this.steps.length), 1386 stepInfo = f("Step %s %d/%d", step.name, this.step, this.steps.length),
1387 stepResult; 1387 stepResult;
1388 function getCurrentSuiteId(casper) { 1388 function getCurrentSuiteId(casper) {
1389 try { 1389 try {
......