Correct filename for channel loggers

This commit is contained in:
Calvin Montgomery 2014-05-23 22:00:51 -07:00
parent af0ddd303d
commit ecc5ffc7da
1 changed files with 1 additions and 1 deletions

View File

@ -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;