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) {
/*jshint maxstatements:20*/
this.checkStarted();
var skipLog = utils.isObject(step.options) && step.options.skipLog === true,
stepInfo = f("Step %d/%d", this.step, this.steps.length),
stepInfo = f("Step %s %d/%d", step.name, this.step, this.steps.length),
stepResult;
function getCurrentSuiteId(casper) {
try {
......