From 8eceb2a3670fec310c585940e0e243973a319871 Mon Sep 17 00:00:00 2001 From: genofire Date: Fri, 18 Sep 2020 15:13:46 +0000 Subject: [PATCH] improve logging --- templates/gitea.ini.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/gitea.ini.j2 b/templates/gitea.ini.j2 index 00e5b71..508182a 100644 --- a/templates/gitea.ini.j2 +++ b/templates/gitea.ini.j2 @@ -81,6 +81,9 @@ PASSWD = {{ gitea_db_password }} SSL_MODE = {{ gitea_db_ssl }} ; For "sqlite3" and "tidb", use an absolute path when you start gitea as service PATH = {{ gitea_db_path }} +{% if gitea_log_only_warning %} +LOG_SQL = false +{% endif %} [indexer] ; Issue indexer storage path, available when ISSUE_INDEXER_TYPE is bleve @@ -190,6 +193,7 @@ ROOT_PATH = {{ gitea_home }}/log ; Use comma to separate multiple modes, e.g. "console, file" {% if gitea_log_systemd %} MODE = console +MACARON = console {% else %} MODE = file {% endif %}