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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/gitaly/config/log/log.go')
-rw-r--r--internal/gitaly/config/log/log.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/gitaly/config/log/log.go b/internal/gitaly/config/log/log.go
index ab7a78af5..fb46ee530 100644
--- a/internal/gitaly/config/log/log.go
+++ b/internal/gitaly/config/log/log.go
@@ -2,7 +2,7 @@ package log
// Config contains logging configuration values
type Config struct {
- Dir string `toml:"dir,omitempty"`
- Format string `toml:"format,omitempty"`
- Level string `toml:"level,omitempty"`
+ Dir string `toml:"dir,omitempty" json:"dir"`
+ Format string `toml:"format,omitempty" json:"format"`
+ Level string `toml:"level,omitempty" json:"level"`
}