summary refs log tree commit diff homepage
path: root/src/MinecraftHandler.ts
diff options
context:
space:
mode:
authordestruc7i0n <destruc7i0n@users.noreply.github.com>2021-12-29 16:06:52 -0500
committerdestruc7i0n <destruc7i0n@users.noreply.github.com>2021-12-29 16:06:52 -0500
commit417dfa990f1b085251bee137a745b4752f3b5dab (patch)
treed71d20f51135a380bfbcda1a33889038bec87375 /src/MinecraftHandler.ts
parent3.1.0 (diff)
downloadshulker-417dfa990f1b085251bee137a745b4752f3b5dab.tar.gz
shulker-417dfa990f1b085251bee137a745b4752f3b5dab.zip
added config option for watchFile
Diffstat (limited to '')
-rw-r--r--src/MinecraftHandler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MinecraftHandler.ts b/src/MinecraftHandler.ts
index 0882d19..bddc515 100644
--- a/src/MinecraftHandler.ts
+++ b/src/MinecraftHandler.ts
@@ -190,7 +190,7 @@ class MinecraftHandler {
   private initTail (callback: Callback) {
     if (fs.existsSync(this.config.LOCAL_FILE_PATH)) {
       console.log(`[INFO] Using configuration for local log file at "${this.config.LOCAL_FILE_PATH}"`)
-      this.tail = new Tail(this.config.LOCAL_FILE_PATH, {useWatchFile: true})
+      this.tail = new Tail(this.config.LOCAL_FILE_PATH, {useWatchFile: this.config.FS_WATCH_FILE ?? true})
     } else {
       throw new Error(`[ERROR] Local log file not found at "${this.config.LOCAL_FILE_PATH}"`)
     }