From 92fc7c62fabbf5ef6a595606b0f9bbe9a1fe8c79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Thieriot?= Date: Sat, 20 Jul 2013 14:06:44 +0100 Subject: [PATCH] Fix the error file path - So there's only one accross the application --- lib/daemon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/daemon.js b/lib/daemon.js index 6f51df9..7186f9b 100644 --- a/lib/daemon.js +++ b/lib/daemon.js @@ -112,7 +112,7 @@ var daemon = function(config) { errlog: { enumerable: false, get: function(){ - return p.join(this.logpath,this.label+'_error.log'); + return p.join(this.logpath,this.label+'-error.log'); } },