Skip to content

Commit

Permalink
fix debug msg in Runnable#slow; closes #2952
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Mar 21, 2018
1 parent 19b764d commit 9f47fd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/runnable.js
Expand Up @@ -103,7 +103,7 @@ Runnable.prototype.slow = function (ms) {
if (typeof ms === 'string') {
ms = milliseconds(ms);
}
debug('timeout %d', ms);
debug('slow %d', ms);
this._slow = ms;
return this;
};
Expand Down

0 comments on commit 9f47fd4

Please sign in to comment.