Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2021-05-21 04:06:23 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2021-05-21 04:06:23 +0300
commit402667fdfff57553ed3e2584aa2efd8010a8bda6 (patch)
tree74291efc7a574c8058d971d472ba28f109e195b0 /internal/logging
parent64a0f90dfbe5d255b1fb7df0aa481575037694a1 (diff)
Default to JSON Logging
Diffstat (limited to 'internal/logging')
-rw-r--r--internal/logging/logging.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/logging/logging.go b/internal/logging/logging.go
index 769856a2..10705a9a 100644
--- a/internal/logging/logging.go
+++ b/internal/logging/logging.go
@@ -16,7 +16,7 @@ func ConfigureLogging(format string, verbose bool) error {
var levelOption log.LoggerOption
if format == "" {
- format = "text"
+ format = "json"
}
if verbose {