diff options
Diffstat (limited to 'src/NeoRuntimeManager/IPC.js')
-rw-r--r-- | src/NeoRuntimeManager/IPC.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/NeoRuntimeManager/IPC.js b/src/NeoRuntimeManager/IPC.js index 281a633..79ce7ea 100644 --- a/src/NeoRuntimeManager/IPC.js +++ b/src/NeoRuntimeManager/IPC.js @@ -6,7 +6,7 @@ */ const net = require("net"); -let logger = require(__appdir + "/src/logger"); +let logger = require(__appdir + "/src/Logger"); /** @type {int} How long wait between each reconnection attempt */ const RECONNECT_INTERVAL = 1000; @@ -181,4 +181,4 @@ function forEachDiff(dict1, dict2, callback) { } } -module.exports = {IPC, COMMAND, GLOBVAR};
\ No newline at end of file +module.exports = {IPC, COMMAND, GLOBVAR}; |