Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/lib/logger.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lib/logger.js')
-rwxr-xr-xutils/lib/logger.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lib/logger.js b/utils/lib/logger.js
index 9cb818a..8db60e7 100755
--- a/utils/lib/logger.js
+++ b/utils/lib/logger.js
@@ -44,7 +44,7 @@ Logger.prototype.debug = function() {
Logger.prototype.add = function(severity, message, progname) {
if (severity > this.level)
return false;
- this.output.print(message || progname);
+ this.output.write(message || progname);
};
Logger.prototype.format = function(severity, args) {