Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix debug msg in Runnable#slow; closes #2952
  • Loading branch information
boneskull committed Mar 22, 2018
1 parent f4275b6 commit 19104e3
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 19104e3

Please sign in to comment.