Commit b87c8630 b87c8630e442f6867d5a53042ada28e305c2fdae by Nicolas Perriault

Merge pull request #426 from sreeix/log_with_function_name

refs #425 Log now has the step function name
2 parents 1fe9afcb 134b55e1
...@@ -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 || "anonymous", this.step, this.steps.length),
1387 stepResult; 1387 stepResult;
1388 function getCurrentSuiteId(casper) { 1388 function getCurrentSuiteId(casper) {
1389 try { 1389 try {
......