logrus

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 16, 2022 License: Apache-2.0 Imports: 2 Imported by: 7

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Logger

type Logger struct {
	// contains filtered or unexported fields
}

Logger is a logger that wraps the logrus logger and has it conform to the log.Logger interface

func New

func New(lgr *logrus.Logger) *Logger

New takes an existing logrus logger and uses that for logging

func NewStandard

func NewStandard() *Logger

NewStandard returns a logger with a logrus standard logger which it instantiates

func (Logger) Debug

func (l Logger) Debug(msg ...interface{})

Debug logs a message at the Debug level

func (Logger) Debugf

func (l Logger) Debugf(template string, args ...interface{})

Debugf formats a message according to a format specifier and logs the message at the Debug level

func (Logger) Debugw

func (l Logger) Debugw(msg string, fields log.Fields)

Debugw logs a message at the Debug level along with some additional context (key-value pairs)

func (Logger) Error

func (l Logger) Error(msg ...interface{})

Error logs a message at the Error level

func (Logger) Errorf

func (l Logger) Errorf(template string, args ...interface{})

Errorf formats a message according to a format specifier and logs the message at the Error level

func (Logger) Errorw

func (l Logger) Errorw(msg string, fields log.Fields)

Errorw logs a message at the Error level along with some additional context (key-value pairs)

func (Logger) Fatal

func (l Logger) Fatal(msg ...interface{})

Fatal logs a message at the Fatal level and exists the application

func (Logger) Fatalf

func (l Logger) Fatalf(template string, args ...interface{})

Fatalf formats a message according to a format specifier and logs the message at the Fatal level and exits the application

func (Logger) Fatalw

func (l Logger) Fatalw(msg string, fields log.Fields)

Fatalw logs a message at the Fatal level along with some additional context (key-value pairs) and exits the application

func (Logger) Info

func (l Logger) Info(msg ...interface{})

Info logs a message at the Info level

func (Logger) Infof

func (l Logger) Infof(template string, args ...interface{})

Infof formats a message according to a format specifier and logs the message at the Info level

func (Logger) Infow

func (l Logger) Infow(msg string, fields log.Fields)

Infow logs a message at the Info level along with some additional context (key-value pairs)

func (Logger) Panic

func (l Logger) Panic(msg ...interface{})

Panic logs a message at the Panic level and panics

func (Logger) Panicf

func (l Logger) Panicf(template string, args ...interface{})

Panicf formats a message according to a format specifier and logs the message at the Panic level and then panics

func (Logger) Panicw

func (l Logger) Panicw(msg string, fields log.Fields)

Panicw logs a message at the Panic level along with some additional context (key-value pairs) and then panics

func (Logger) Trace

func (l Logger) Trace(msg ...interface{})

Trace logs a message at the Trace level

func (Logger) Tracef

func (l Logger) Tracef(template string, args ...interface{})

Tracef formats a message according to a format specifier and logs the message at the Trace level

func (Logger) Tracew

func (l Logger) Tracew(msg string, fields log.Fields)

Tracew logs a message at the Trace level along with some additional context (key-value pairs)

func (Logger) Warn

func (l Logger) Warn(msg ...interface{})

Warn logs a message at the Warn level

func (Logger) Warnf

func (l Logger) Warnf(template string, args ...interface{})

Warnf formats a message according to a format specifier and logs the message at the Warning level

func (Logger) Warnw

func (l Logger) Warnw(msg string, fields log.Fields)

Warnw logs a message at the Warning level along with some additional context (key-value pairs)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL