mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 16:23:39 +02:00
Update Process to store log files in provided directory
This commit is contained in:
parent
4851def51c
commit
9539954b43
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ Process.prototype = extend(Process.prototype, {
|
|||
var logDirectoryCreated = false;
|
||||
|
||||
try {
|
||||
fs.mkdirSync('logs');
|
||||
fs.mkdirSync(this.logDirectory);
|
||||
logDirectoryCreated = true;
|
||||
} catch (e) {
|
||||
if (e.code == 'EEXIST') {
|
||||
|
|
Loading…
Reference in a new issue