Skip to content

Commit

Permalink
Merge pull request #71 from skit-ai/fix-default-sensitivity
Browse files Browse the repository at this point in the history
Fix: set sensitivity as false by default
  • Loading branch information
sreeram-narayanan authored Jun 12, 2024
2 parents 9a43c54 + 6697dfb commit c138482
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 c138482

Please sign in to comment.