package log
import "github.com/containerd/containerd/log"
Index ¶
- Constants
- Variables
- func GetLogger(ctx context.Context) *logrus.Entry
- func ParseLevel(lvl string) (logrus.Level, error)
- func Trace(e *logrus.Entry, args ...interface{})
- func Tracef(e *logrus.Entry, format string, args ...interface{})
- func WithLogger(ctx context.Context, logger *logrus.Entry) context.Context
Constants ¶
const RFC3339NanoFixed = "2006-01-02T15:04:05.000000000Z07:00"
RFC3339NanoFixed is time.RFC3339Nano with nanoseconds padded using zeros to ensure the formatted time is always the same number of characters.
const TraceLevel = logrus.Level(uint32(logrus.DebugLevel + 1))
TraceLevel is the log level for tracing. Trace level is lower than debug level, and is usually used to trace detailed behavior of the program.
Variables ¶
var ( // G is an alias for GetLogger. // // We may want to define this locally to a package to get package tagged log // messages. G = GetLogger // L is an alias for the standard logger. L = logrus.NewEntry(logrus.StandardLogger()) )
Functions ¶
func GetLogger ¶
GetLogger retrieves the current logger from the context. If no logger is available, the default logger is returned.
func ParseLevel ¶
ParseLevel takes a string level and returns the Logrus log level constant. It supports trace level.
func Trace ¶
Trace logs a message at level Trace with the log entry passed-in.
func Tracef ¶
Tracef logs a message at level Trace with the log entry passed-in.
func WithLogger ¶
WithLogger returns a new context with the provided logger. Use in combination with logger.WithField(s) for great effect.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
log/logtest |
- Version
- v1.3.5
- Published
- Jun 26, 2020
- Platform
- windows/amd64
- Imports
- 3 packages
- Last checked
- 1 second ago –
Tools for package owners.