log init parameters in config files

This commit is contained in:
Mikayla Fischler
2022-04-29 13:36:00 -04:00
parent c805b6e0c5
commit e1135eac01
6 changed files with 21 additions and 3 deletions

View File

@@ -6,3 +6,9 @@ REACTOR_ID = 1
SERVER_PORT = 16000
-- port to listen to incoming packets FROM server
LISTEN_PORT = 14001
-- log path
LOG_PATH = "/log.txt"
-- log mode
-- 0 = APPEND (adds to existing file on start)
-- 1 = NEW (replaces existing file on start)
LOG_MODE = 0