diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2021-10-09 11:58:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-09 11:58:05 +0200 |
commit | a49bdd2d135e0ef6ab61898ea655a547184fe0d9 (patch) | |
tree | cfbf09da8a6742f2c8c799140509fbfb800c1cf5 | |
parent | 46ef2e6031937e73e74f7dc06375e1cea6c8bfdb (diff) | |
download | Luxcena-Neo-a49bdd2d135e0ef6ab61898ea655a547184fe0d9.tar.gz Luxcena-Neo-a49bdd2d135e0ef6ab61898ea655a547184fe0d9.zip |
:pencil2: Fix typo
-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}; |