diff options
author | Patrick Bajao <ebajao@gitlab.com> | 2021-07-13 06:42:59 +0000 |
---|---|---|
committer | Patrick Bajao <ebajao@gitlab.com> | 2021-07-13 06:42:59 +0000 |
commit | b16c323cc832be3fa3b4bcedcc5a90bfcdc6841a (patch) | |
tree | 5309aad835ffc6bda82ba0bf468a0ce5e3205a57 /internal | |
parent | d3a9f19926eec2478dbdfeaf3c130fe26a700e7f (diff) | |
parent | 4e2a137dee88f34fdfa02c53d126d417a4c76c66 (diff) | |
download | gitlab-shell-b16c323cc832be3fa3b4bcedcc5a90bfcdc6841a.tar.gz |
Merge branch 'change_log_format' into 'main'
Change default logging format to JSON
See merge request gitlab-org/gitlab-shell!476
Diffstat (limited to 'internal')
-rw-r--r-- | internal/config/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index c112038..23044cd 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -60,7 +60,7 @@ type Config struct { var ( DefaultConfig = Config{ LogFile: "gitlab-shell.log", - LogFormat: "text", + LogFormat: "json", Server: DefaultServerConfig, User: "git", } |