mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
update comments
This commit is contained in:
parent
d75fe2d0a6
commit
1896d43489
1 changed files with 3 additions and 2 deletions
|
|
@ -168,8 +168,9 @@ func (h *GlogHandler) WithGroup(name string) slog.Handler {
|
|||
panic("not implemented")
|
||||
}
|
||||
|
||||
// Handle implements slog.Handler.Handle, filtering a log record through the global, local
|
||||
// and backtrace filters, finally emitting it if either allows it through.
|
||||
// Handle implements slog.Handler.Handle
|
||||
// If the global log level allows, fast track logging.
|
||||
// Else use the calculated log level to track logging or drop it.
|
||||
func (h *GlogHandler) Handle(_ context.Context, r slog.Record) error {
|
||||
// If the global log level allows, fast track logging
|
||||
if slog.Level(h.level.Load()) <= r.Level {
|
||||
|
|
|
|||
Loading…
Reference in a new issue