mirror of https://github.com/calzoneman/sync.git
Correct filename for channel loggers
This commit is contained in:
parent
af0ddd303d
commit
ecc5ffc7da
|
@ -53,7 +53,7 @@ function Channel(name) {
|
||||||
this.uniqueName = name.toLowerCase();
|
this.uniqueName = name.toLowerCase();
|
||||||
this.modules = {};
|
this.modules = {};
|
||||||
this.logger = new Logger.Logger(path.join(__dirname, "..", "..", "chanlogs",
|
this.logger = new Logger.Logger(path.join(__dirname, "..", "..", "chanlogs",
|
||||||
this.uniqueName));
|
this.uniqueName + ".log"));
|
||||||
this.users = [];
|
this.users = [];
|
||||||
this.activeLock = new ActiveLock(this);
|
this.activeLock = new ActiveLock(this);
|
||||||
this.flags = 0;
|
this.flags = 0;
|
||||||
|
|
Loading…
Reference in New Issue