2018-06-29 11:17:00 -04:00
|
|
|
/*
|
|
|
|
Copyright The containerd Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// Package log provides types and functions related to logging, passing
|
|
|
|
// loggers through a context, and attaching context to the logger.
|
|
|
|
//
|
|
|
|
// # Transitional types
|
|
|
|
//
|
|
|
|
// This package contains various types that are aliases for types in [logrus].
|
|
|
|
// These aliases are intended for transitioning away from hard-coding logrus
|
|
|
|
// as logging implementation. Consumers of this package are encouraged to use
|
|
|
|
// the type-aliases from this package instead of directly using their logrus
|
|
|
|
// equivalent.
|
|
|
|
//
|
|
|
|
// The intent is to replace these aliases with locally defined types and
|
|
|
|
// interfaces once all consumers are no longer directly importing logrus
|
|
|
|
// types.
|
|
|
|
//
|
|
|
|
// IMPORTANT: due to the transitional purpose of this package, it is not
|
|
|
|
// guaranteed for the full logrus API to be provided in the future. As
|
|
|
|
// outlined, these aliases are provided as a step to transition away from
|
|
|
|
// a specific implementation which, as a result, exposes the full logrus API.
|
|
|
|
// While no decisions have been made on the ultimate design and interface
|
|
|
|
// provided by this package, we do not expect carrying "less common" features.
|
2018-06-29 11:17:00 -04:00
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-07-29 15:27:54 -04:00
|
|
|
"fmt"
|
2018-06-29 11:17:00 -04:00
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// G is a shorthand for [GetLogger].
|
|
|
|
//
|
|
|
|
// We may want to define this locally to a package to get package tagged log
|
|
|
|
// messages.
|
|
|
|
var G = GetLogger
|
|
|
|
|
|
|
|
// L is an alias for the standard logger.
|
|
|
|
var L = &Entry{
|
|
|
|
Logger: logrus.StandardLogger(),
|
|
|
|
// Default is three fields plus a little extra room.
|
|
|
|
Data: make(Fields, 6),
|
|
|
|
}
|
2018-06-29 11:17:00 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
type loggerKey struct{}
|
2018-06-29 11:17:00 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// Fields type to pass to "WithFields".
|
|
|
|
type Fields = map[string]any
|
2023-07-29 15:27:54 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// Entry is a logging entry. It contains all the fields passed with
|
|
|
|
// [Entry.WithFields]. It's finally logged when Trace, Debug, Info, Warn,
|
|
|
|
// Error, Fatal or Panic is called on it. These objects can be reused and
|
|
|
|
// passed around as much as you wish to avoid field duplication.
|
|
|
|
//
|
|
|
|
// Entry is a transitional type, and currently an alias for [logrus.Entry].
|
|
|
|
type Entry = logrus.Entry
|
2023-07-29 15:27:54 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// RFC3339NanoFixed is [time.RFC3339Nano] with nanoseconds padded using
|
|
|
|
// zeros to ensure the formatted time is always the same number of
|
|
|
|
// characters.
|
|
|
|
const RFC3339NanoFixed = "2006-01-02T15:04:05.000000000Z07:00"
|
|
|
|
|
|
|
|
// Level is a logging level.
|
|
|
|
type Level = logrus.Level
|
2018-06-29 11:17:00 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// Supported log levels.
|
2021-06-21 11:08:47 -04:00
|
|
|
const (
|
2023-09-19 10:42:32 -04:00
|
|
|
// TraceLevel level. Designates finer-grained informational events
|
|
|
|
// than [DebugLevel].
|
|
|
|
TraceLevel Level = logrus.TraceLevel
|
2021-06-21 11:08:47 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// DebugLevel level. Usually only enabled when debugging. Very verbose
|
|
|
|
// logging.
|
|
|
|
DebugLevel Level = logrus.DebugLevel
|
2021-06-21 11:08:47 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// InfoLevel level. General operational entries about what's going on
|
|
|
|
// inside the application.
|
|
|
|
InfoLevel Level = logrus.InfoLevel
|
2023-07-29 15:27:54 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// WarnLevel level. Non-critical entries that deserve eyes.
|
|
|
|
WarnLevel Level = logrus.WarnLevel
|
2023-07-29 15:27:54 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// ErrorLevel level. Logs errors that should definitely be noted.
|
|
|
|
// Commonly used for hooks to send errors to an error tracking service.
|
|
|
|
ErrorLevel Level = logrus.ErrorLevel
|
2023-07-29 15:27:54 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// FatalLevel level. Logs and then calls "logger.Exit(1)". It exits
|
|
|
|
// even if the logging level is set to Panic.
|
|
|
|
FatalLevel Level = logrus.FatalLevel
|
|
|
|
|
|
|
|
// PanicLevel level. This is the highest level of severity. Logs and
|
|
|
|
// then calls panic with the message passed to Debug, Info, ...
|
|
|
|
PanicLevel Level = logrus.PanicLevel
|
2021-06-21 11:08:47 -04:00
|
|
|
)
|
2018-03-19 18:57:30 -04:00
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// SetLevel sets log level globally. It returns an error if the given
|
|
|
|
// level is not supported.
|
|
|
|
//
|
|
|
|
// level can be one of:
|
|
|
|
//
|
|
|
|
// - "trace" ([TraceLevel])
|
|
|
|
// - "debug" ([DebugLevel])
|
|
|
|
// - "info" ([InfoLevel])
|
|
|
|
// - "warn" ([WarnLevel])
|
|
|
|
// - "error" ([ErrorLevel])
|
|
|
|
// - "fatal" ([FatalLevel])
|
|
|
|
// - "panic" ([PanicLevel])
|
2023-07-29 15:27:54 -04:00
|
|
|
func SetLevel(level string) error {
|
|
|
|
lvl, err := logrus.ParseLevel(level)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
L.Logger.SetLevel(lvl)
|
2023-07-29 15:27:54 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLevel returns the current log level.
|
|
|
|
func GetLevel() Level {
|
2023-09-19 10:42:32 -04:00
|
|
|
return L.Logger.GetLevel()
|
2023-07-29 15:27:54 -04:00
|
|
|
}
|
|
|
|
|
2023-09-19 10:42:32 -04:00
|
|
|
// OutputFormat specifies a log output format.
|
|
|
|
type OutputFormat string
|
|
|
|
|
|
|
|
// Supported log output formats.
|
|
|
|
const (
|
|
|
|
// TextFormat represents the text logging format.
|
|
|
|
TextFormat OutputFormat = "text"
|
|
|
|
|
|
|
|
// JSONFormat represents the JSON logging format.
|
|
|
|
JSONFormat OutputFormat = "json"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetFormat sets the log output format ([TextFormat] or [JSONFormat]).
|
|
|
|
func SetFormat(format OutputFormat) error {
|
2023-07-29 15:27:54 -04:00
|
|
|
switch format {
|
|
|
|
case TextFormat:
|
2023-09-19 10:42:32 -04:00
|
|
|
L.Logger.SetFormatter(&logrus.TextFormatter{
|
2023-07-29 15:27:54 -04:00
|
|
|
TimestampFormat: RFC3339NanoFixed,
|
|
|
|
FullTimestamp: true,
|
|
|
|
})
|
2023-09-19 10:42:32 -04:00
|
|
|
return nil
|
2023-07-29 15:27:54 -04:00
|
|
|
case JSONFormat:
|
2023-09-19 10:42:32 -04:00
|
|
|
L.Logger.SetFormatter(&logrus.JSONFormatter{
|
2023-07-29 15:27:54 -04:00
|
|
|
TimestampFormat: RFC3339NanoFixed,
|
|
|
|
})
|
2023-09-19 10:42:32 -04:00
|
|
|
return nil
|
2023-07-29 15:27:54 -04:00
|
|
|
default:
|
|
|
|
return fmt.Errorf("unknown log format: %s", format)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-29 11:17:00 -04:00
|
|
|
// WithLogger returns a new context with the provided logger. Use in
|
|
|
|
// combination with logger.WithField(s) for great effect.
|
2023-09-19 10:42:32 -04:00
|
|
|
func WithLogger(ctx context.Context, logger *Entry) context.Context {
|
|
|
|
return context.WithValue(ctx, loggerKey{}, logger.WithContext(ctx))
|
2018-06-29 11:17:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetLogger retrieves the current logger from the context. If no logger is
|
|
|
|
// available, the default logger is returned.
|
2023-09-19 10:42:32 -04:00
|
|
|
func GetLogger(ctx context.Context) *Entry {
|
|
|
|
if logger := ctx.Value(loggerKey{}); logger != nil {
|
|
|
|
return logger.(*Entry)
|
2018-06-29 11:17:00 -04:00
|
|
|
}
|
2023-09-19 10:42:32 -04:00
|
|
|
return L.WithContext(ctx)
|
2018-06-29 11:17:00 -04:00
|
|
|
}
|