Skip to content
Snippets Groups Projects
Commit 8aaf2e5f authored by David Trattnig's avatar David Trattnig
Browse files

Changed default log folder.

parent 7d4f1f74
No related branches found
No related tags found
No related merge requests found
.idea/ .idea/
*.pyc *.pyc
*.log *.log
logs
.vscode/tags .vscode/tags
configuration/engine.ini configuration/engine.ini
web/css/aura-clock-bundle.css web/css/aura-clock-bundle.css
......
...@@ -45,6 +45,9 @@ fi ...@@ -45,6 +45,9 @@ fi
# Development and Production # Development and Production
echo "Create local Logs Folder ..."
mkdir -p logs
echo "Installing Web Application Packages ..." echo "Installing Web Application Packages ..."
./install-web.sh ./install-web.sh
......
...@@ -32,7 +32,8 @@ set("server.telnet.bind_addr", "0.0.0.0") ...@@ -32,7 +32,8 @@ set("server.telnet.bind_addr", "0.0.0.0")
set("server.telnet.port", 1234) set("server.telnet.port", 1234)
# LOG FILE SETTINGS # LOG FILE SETTINGS
set("log.file.path", "./<script>.log") log_dir = list.assoc("logdir", ini)
set("log.file.path", "#{log_dir}/engine-lqs.log")
# SOCKET SETTINGS # SOCKET SETTINGS
set("server.socket", true) set("server.socket", true)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment