2017-05-12 05:24:39 +00:00
|
|
|
// Package log provides a global logger for zerolog.
|
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
2017-05-20 07:22:37 +00:00
|
|
|
"context"
|
Fix handling of printing caller with Write, Print, and Printf. (#315)
* Add event.CallerSkipFrame(skip int)
This indicates that, for this event, we should skip an additional
specified number of frames.
This is cumulative, calling it twice for the same event will add both
numbers together, and this is in addition to any skip frame settings set
through the context, or globally.
The indended purpose is for wrappers to Msg or Msgf, so that the actual
caller is always printed correctly.
* Use CallerSkipFrame for Print, Printf, and Write.
This allows us to use the correct caller when using these 3 functions.
Co-authored-by: Zephaniah E. Loss-Cutler-Hull <warp@aehallh.com>
2021-05-13 15:22:27 +00:00
|
|
|
"fmt"
|
2017-08-06 02:47:55 +00:00
|
|
|
"io"
|
2017-05-12 05:24:39 +00:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/rs/zerolog"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Logger is the global logger.
|
|
|
|
var Logger = zerolog.New(os.Stderr).With().Timestamp().Logger()
|
|
|
|
|
2017-08-06 02:47:55 +00:00
|
|
|
// Output duplicates the global logger and sets w as its output.
|
|
|
|
func Output(w io.Writer) zerolog.Logger {
|
|
|
|
return Logger.Output(w)
|
|
|
|
}
|
|
|
|
|
2017-05-12 05:24:39 +00:00
|
|
|
// With creates a child logger with the field added to its context.
|
|
|
|
func With() zerolog.Context {
|
|
|
|
return Logger.With()
|
|
|
|
}
|
|
|
|
|
2018-02-11 02:57:53 +00:00
|
|
|
// Level creates a child logger with the minimum accepted level set to level.
|
2017-05-12 05:24:39 +00:00
|
|
|
func Level(level zerolog.Level) zerolog.Logger {
|
|
|
|
return Logger.Level(level)
|
|
|
|
}
|
|
|
|
|
2017-08-29 01:52:15 +00:00
|
|
|
// Sample returns a logger with the s sampler.
|
|
|
|
func Sample(s zerolog.Sampler) zerolog.Logger {
|
|
|
|
return Logger.Sample(s)
|
2017-05-12 05:24:39 +00:00
|
|
|
}
|
|
|
|
|
2017-12-01 17:52:37 +00:00
|
|
|
// Hook returns a logger with the h Hook.
|
|
|
|
func Hook(h zerolog.Hook) zerolog.Logger {
|
|
|
|
return Logger.Hook(h)
|
|
|
|
}
|
|
|
|
|
2019-11-19 00:22:50 +00:00
|
|
|
// Err starts a new message with error level with err as a field if not nil or
|
|
|
|
// with info level if err is nil.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
|
|
|
func Err(err error) *zerolog.Event {
|
|
|
|
return Logger.Err(err)
|
|
|
|
}
|
|
|
|
|
2019-11-04 19:39:22 +00:00
|
|
|
// Trace starts a new message with trace level.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
|
|
|
func Trace() *zerolog.Event {
|
|
|
|
return Logger.Trace()
|
|
|
|
}
|
|
|
|
|
2017-05-12 05:24:39 +00:00
|
|
|
// Debug starts a new message with debug level.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Debug() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Debug()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Info starts a new message with info level.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Info() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Info()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Warn starts a new message with warn level.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Warn() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Warn()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error starts a new message with error level.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Error() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fatal starts a new message with fatal level. The os.Exit(1) function
|
|
|
|
// is called by the Msg method.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Fatal() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Fatal()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Panic starts a new message with panic level. The message is also sent
|
|
|
|
// to the panic function.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Panic() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Panic()
|
|
|
|
}
|
|
|
|
|
2017-12-14 18:33:32 +00:00
|
|
|
// WithLevel starts a new message with level.
|
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
|
|
|
func WithLevel(level zerolog.Level) *zerolog.Event {
|
|
|
|
return Logger.WithLevel(level)
|
|
|
|
}
|
|
|
|
|
2017-05-12 05:24:39 +00:00
|
|
|
// Log starts a new message with no level. Setting zerolog.GlobalLevel to
|
2018-02-11 02:57:53 +00:00
|
|
|
// zerolog.Disabled will still disable events produced by this method.
|
2017-05-12 05:24:39 +00:00
|
|
|
//
|
|
|
|
// You must call Msg on the returned event in order to send the event.
|
2017-05-20 02:43:59 +00:00
|
|
|
func Log() *zerolog.Event {
|
2017-05-12 05:24:39 +00:00
|
|
|
return Logger.Log()
|
|
|
|
}
|
2017-05-20 07:22:37 +00:00
|
|
|
|
2017-09-02 02:56:35 +00:00
|
|
|
// Print sends a log event using debug level and no extra field.
|
|
|
|
// Arguments are handled in the manner of fmt.Print.
|
|
|
|
func Print(v ...interface{}) {
|
Fix handling of printing caller with Write, Print, and Printf. (#315)
* Add event.CallerSkipFrame(skip int)
This indicates that, for this event, we should skip an additional
specified number of frames.
This is cumulative, calling it twice for the same event will add both
numbers together, and this is in addition to any skip frame settings set
through the context, or globally.
The indended purpose is for wrappers to Msg or Msgf, so that the actual
caller is always printed correctly.
* Use CallerSkipFrame for Print, Printf, and Write.
This allows us to use the correct caller when using these 3 functions.
Co-authored-by: Zephaniah E. Loss-Cutler-Hull <warp@aehallh.com>
2021-05-13 15:22:27 +00:00
|
|
|
Logger.Debug().CallerSkipFrame(1).Msg(fmt.Sprint(v...))
|
2017-09-02 02:56:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Printf sends a log event using debug level and no extra field.
|
|
|
|
// Arguments are handled in the manner of fmt.Printf.
|
|
|
|
func Printf(format string, v ...interface{}) {
|
Fix handling of printing caller with Write, Print, and Printf. (#315)
* Add event.CallerSkipFrame(skip int)
This indicates that, for this event, we should skip an additional
specified number of frames.
This is cumulative, calling it twice for the same event will add both
numbers together, and this is in addition to any skip frame settings set
through the context, or globally.
The indended purpose is for wrappers to Msg or Msgf, so that the actual
caller is always printed correctly.
* Use CallerSkipFrame for Print, Printf, and Write.
This allows us to use the correct caller when using these 3 functions.
Co-authored-by: Zephaniah E. Loss-Cutler-Hull <warp@aehallh.com>
2021-05-13 15:22:27 +00:00
|
|
|
Logger.Debug().CallerSkipFrame(1).Msgf(format, v...)
|
2017-09-02 02:56:35 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 07:22:37 +00:00
|
|
|
// Ctx returns the Logger associated with the ctx. If no logger
|
|
|
|
// is associated, a disabled logger is returned.
|
2017-08-30 05:53:32 +00:00
|
|
|
func Ctx(ctx context.Context) *zerolog.Logger {
|
2017-05-20 07:22:37 +00:00
|
|
|
return zerolog.Ctx(ctx)
|
|
|
|
}
|