Skip to content

Commit 19104e3

Browse files
committed
fix debug msg in Runnable#slow; closes #2952
1 parent f4275b6 commit 19104e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/runnable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Runnable.prototype.slow = function (ms) {
103103
if (typeof ms === 'string') {
104104
ms = milliseconds(ms);
105105
}
106-
debug('timeout %d', ms);
106+
debug('slow %d', ms);
107107
this._slow = ms;
108108
return this;
109109
};

0 commit comments

Comments
 (0)