Skip to content

Commit

Permalink
Add helper for setting better zerolog globals
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Feb 8, 2024
1 parent 5f386f8 commit 32294da
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions exzerolog/defaults.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// Copyright (c) 2024 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

package exzerolog

import (
"time"

"github.com/rs/zerolog"
deflog "github.com/rs/zerolog/log"
)

// SetupDefaults updates zerolog globals with sensible defaults.
//
// * [zerolog.TimeFieldFormat] is set to time.RFC3339Nano instead of time.RFC3339
// * [zerolog.CallerMarshalFunc] is set to [CallerWithFunctionName]
// * [zerolog.DefaultContextLogger] is set to the given logger with default_context_log=true and caller info enabled
// * The global default [log.Logger] is set to the given logger with global_log=true and caller info enabled
// * [zerolog.LevelColors] are updated to swap trace and debug level colors
func SetupDefaults(log *zerolog.Logger) {
zerolog.TimeFieldFormat = time.RFC3339Nano
zerolog.CallerMarshalFunc = CallerWithFunctionName
defaultCtxLog := log.With().Bool("default_context_log", true).Caller().Logger()
zerolog.DefaultContextLogger = &defaultCtxLog
deflog.Logger = log.With().Bool("global_log", true).Caller().Logger()
// Swap trace and debug level colors so trace pops out the least
zerolog.LevelColors[zerolog.TraceLevel] = 0
zerolog.LevelColors[zerolog.DebugLevel] = 34 // blue
}

0 comments on commit 32294da

Please sign in to comment.