From ecc5ffc7da73e4e817be98209523d3fd2db4bfdb Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Fri, 23 May 2014 22:00:51 -0700 Subject: [PATCH] Correct filename for channel loggers --- lib/channel/channel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/channel/channel.js b/lib/channel/channel.js index 09b53494..6f38ad0b 100644 --- a/lib/channel/channel.js +++ b/lib/channel/channel.js @@ -53,7 +53,7 @@ function Channel(name) { this.uniqueName = name.toLowerCase(); this.modules = {}; this.logger = new Logger.Logger(path.join(__dirname, "..", "..", "chanlogs", - this.uniqueName)); + this.uniqueName + ".log")); this.users = []; this.activeLock = new ActiveLock(this); this.flags = 0;