mirror of
https://github.com/glimpse-app/server.git
synced 2025-04-02 10:52:45 -04:00
debug off by default
This commit is contained in:
parent
a395d197a5
commit
e2618c9a17
2 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ proc getConfig(): Cfg =
|
|||
# general
|
||||
uploadDir: config.get("General", "uploadDir", "./uploads/"),
|
||||
enableLogs: config.get("General", "enableLogs", true),
|
||||
enableDebugLogs: config.get("General", "enableDebugLogs", true),
|
||||
enableDebugLogs: config.get("General", "enableDebugLogs", false),
|
||||
enableErrorLogs: config.get("General", "enableErrorLogs", true),
|
||||
)
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ const defaultConf* =
|
|||
; Allows creating and logging to the log file. If this is on, it forces `enableErrorLogs` on as well.
|
||||
#enableLogs = "true"
|
||||
; Includes debugging messages in logs.
|
||||
#enableDebugLogs = "true"
|
||||
# enableDebugLogs = "false"
|
||||
; Same as `enableLogs` but only for error or fatal messages. Forced on, if `enableLogs` is on.
|
||||
#enableErrorLogs = "true"
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue