summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.yml.example2
-rw-r--r--internal/config/config.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/config.yml.example b/config.yml.example
index 8be2f97..45e96cc 100644
--- a/config.yml.example
+++ b/config.yml.example
@@ -45,7 +45,7 @@ auth_file: "/home/git/.ssh/authorized_keys"
# Log file.
# Default is gitlab-shell.json in the root directory.
-# log_file: "/home/git/gitlab-shell/gitlab-shell.json"
+# log_file: "/home/git/gitlab-shell/gitlab-shell.log"
# Log level. INFO by default
log_level: INFO
diff --git a/internal/config/config.go b/internal/config/config.go
index ca5c726..8392d78 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -57,7 +57,7 @@ type Config struct {
// The defaults to apply before parsing the config file(s).
var (
DefaultConfig = Config{
- LogFile: "gitlab-shell.json",
+ LogFile: "gitlab-shell.log",
LogFormat: "json",
Server: DefaultServerConfig,
User: "git",