summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPatrick Bajao <ebajao@gitlab.com>2021-07-13 06:42:59 +0000
committerPatrick Bajao <ebajao@gitlab.com>2021-07-13 06:42:59 +0000
commitb16c323cc832be3fa3b4bcedcc5a90bfcdc6841a (patch)
tree5309aad835ffc6bda82ba0bf468a0ce5e3205a57 /internal
parentd3a9f19926eec2478dbdfeaf3c130fe26a700e7f (diff)
parent4e2a137dee88f34fdfa02c53d126d417a4c76c66 (diff)
downloadgitlab-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.go2
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",
}