Allow one log folder for multiple consoles

This commit is contained in:
Guillaume Wuip 2015-01-24 09:09:52 +01:00
parent d0a85bb35e
commit 3422550f2c

View file

@ -31,13 +31,6 @@
this.rootPath = rootPath || 'logs';
//Check if the folder is already in use
if (rootPaths.indexOf(this.rootPath) > -1) {
throw new Error('Folder ' + this.rootPath + ' already in use');
} else {
rootPaths.push(this.rootPath);
}
//Init history
this.initHistory();
};