diff options
author | Unknwon <u@gogs.io> | 2018-11-26 06:44:06 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2018-11-26 06:44:06 -0500 |
commit | a91d9054ada3fed13eefcf9c8a266b81845b8548 (patch) | |
tree | 53745573b05d3995e963257bca1c120956f09325 /conf/app.ini | |
parent | 6c90d12a0c1e70b5627eaea160e209b0ba8aa646 (diff) |
conf: fix unexpected behavior of config inheritance (#5007)
Diffstat (limited to 'conf/app.ini')
-rw-r--r-- | conf/app.ini | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/conf/app.ini b/conf/app.ini index 0ba062e7..ab149369 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -330,13 +330,13 @@ LEVEL = Trace ; For "console" mode only [log.console] -; leave empty to inherit -LEVEL = +; Comment out to inherit +; LEVEL = ; For "file" mode only [log.file] -; leave empty to inherit -LEVEL = +; Comment out to inherit +; LEVEL = ; This enables automated log rotate (switch of following options) LOG_ROTATE = true ; Segment log daily @@ -350,14 +350,14 @@ MAX_DAYS = 7 ; For "slack" mode only [log.slack] -; leave empty to inherit -LEVEL = +; Comment out to inherit +; LEVEL = ; Webhook URL URL = [log.discord] -; leave empty to inherit -LEVEL = +; Comment out to inherit +; LEVEL = ; Webhook URL URL = ; Username displayed in webhook |