Skip to content

Commit

Permalink
chore(config): set firewall default log level to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
mj committed Dec 7, 2024
1 parent 44287b7 commit 8e83396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/example_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
# 'trace', 'debug', 'info', 'warn', and 'error'.
[logger.levels]
_consensus = 'warn'
_firewall = 'error'
_firewall = 'warn'
_grpc = 'info'
_http = 'info'
_jsonrpc = 'info'
Expand Down
2 changes: 1 addition & 1 deletion util/logger/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func DefaultConfig() *Config {
conf.Levels["_grpc"] = "info"
conf.Levels["_nonomsg"] = "info"
conf.Levels["_jsonrpc"] = "info"
conf.Levels["_firewall"] = "error"
conf.Levels["_firewall"] = "warn"

return conf
}
Expand Down

0 comments on commit 8e83396

Please sign in to comment.