Skip to content

Commit

Permalink
Add default value to the logger CaptureShared configuration property (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
reugn authored Mar 27, 2024
1 parent fd6636e commit f585c9c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/model/config_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ var defaultConfig = struct {
ContextPath: util.Ptr("/"),
},
logger: LoggerConfig{
Level: util.Ptr("DEBUG"),
Format: util.Ptr("PLAIN"),
StdoutWriter: util.Ptr(true),
Level: util.Ptr("DEBUG"),
Format: util.Ptr("PLAIN"),
StdoutWriter: util.Ptr(true),
CaptureShared: util.Ptr(false),
},
backupPolicy: backupPolicy{
retryDelay: 60_000, // default retry delay is 1 minute
Expand Down

0 comments on commit f585c9c

Please sign in to comment.