Skip to content

Commit

Permalink
set sensitivity as false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Subhrajit Prusty committed Jun 12, 2024
1 parent 9a43c54 commit 6697dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/slog/slog.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var (

func init() {
logLevel = env.String("LOG_LEVEL", "info")
logSensitive = env.Bool("LOG_SENSITIVE", true)
logSensitive = false
callerDepth = env.Int("LOG_CALLER_DEPTH", 4)
defaultLoggerWrapper = newloggerWrapper(logLevel, logSensitive)
}
Expand Down

0 comments on commit 6697dfb

Please sign in to comment.