You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the introduction of slog (#4374), we have an additional Warn log level available for all CometBFT components.
We have in the code base several situations where this new level would be best suited, for instance:
./config/config.go: // CheckDeprecated returns any deprecation warnings. These are printed to the operator on startup.
./node/node.go: logger.Info("warning: cannot verify appHash. Verification will happen when node boots up!")
./p2p/pex/known_address.go: // log.Warn(Fmt("Bucket already exists in ka.Buckets: %v", ka))
./internal/consensus/wal.go: wal.Logger.Error("Error writing msg to consensus wal. WARNING: recover may not be possible for the current height",
We should adapt the logging level in order to render some messages more visible, with the introduction of this new log level.
The text was updated successfully, but these errors were encountered:
With the introduction of slog (#4374), we have an additional
Warn
log level available for all CometBFT components.We have in the code base several situations where this new level would be best suited, for instance:
We should adapt the logging level in order to render some messages more visible, with the introduction of this new log level.
The text was updated successfully, but these errors were encountered: