From 14a83e12a4681f1a217dd68e405c22a81396cd4c Mon Sep 17 00:00:00 2001 From: Dan Rowe Date: Sun, 21 Oct 2012 23:15:52 -0400 Subject: [PATCH] Revert "Tweak log formating to append colon and space to stdout type." This reverts commit 246fdaece68ae60c6f25fa59f27d9c4183371b9b. --- lib/logger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/logger.js b/lib/logger.js index f226427..402dabe 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -18,9 +18,9 @@ Logger.prototype = { log: function (msg, type) { if (this.backend == 'stdout') { if (!type) { - type = 'DEBUG'; + type = 'DEBUG: '; } - this.util.log(type + ": " + msg); + this.util.log(type + msg); } else { if (!type) { type = this.level