From b7e47076978ab4c14655b11436fa3edab78cad66 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Tue, 20 Mar 2018 22:23:30 -0700 Subject: [PATCH] fix debug msg in Runnable#slow; closes #2952 --- lib/runnable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runnable.js b/lib/runnable.js index 1045b0680b..7c26f56970 100644 --- a/lib/runnable.js +++ b/lib/runnable.js @@ -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; };