std

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Apr 20, 2022 License: MIT Imports: 5 Imported by: 0

Documentation

Overview

NOTE: This package differs from log.Std in the following ways:

- Renamed Std struct to Logger.

- Added Logger.logger field.

- Added New() method.

- Changed Prefix(), log() and logf() methods do not use the stdlog "log" package directly. Instead they use (l *Logger).

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 wrapper around an instance of a logger from the Go standard library.

func New

func New(lgr *stdlog.Logger) *Logger

New creates an instance of std.Logger that wraps a logger from the standard library. It takes a logger from the standard library as an argument. This is now it differs from log.NewStandard() which is used by default. The logger is configurable.

func NewStandard

func NewStandard() *Logger

NewStandard sets up a basic logger using the general one provided in the Go standard library.

func (Logger) Debug

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

func (Logger) Debugf

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

func (Logger) Error

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

func (Logger) Errorf

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

func (Logger) Fatal

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

func (Logger) Fatalf

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

func (Logger) Info

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

func (Logger) Infof

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

func (*Logger) Level

func (l *Logger) Level(level ...levels.Type) levels.Type

func (*Logger) Named

func (l *Logger) Named(name string) *Logger

func (*Logger) Options

func (l *Logger) Options(funcs ...func(*Logger) *Logger) *Logger

func (Logger) Panic

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

func (Logger) Panicf

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

func (*Logger) Prefix

func (l *Logger) Prefix(prefix ...string) string

func (Logger) Trace

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

func (Logger) Tracef

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

func (Logger) Warn

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

func (Logger) Warnf

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

func (*Logger) WithLevel

func (l *Logger) WithLevel(level levels.Type) *Logger

func (*Logger) WithLevelFromDebug

func (l *Logger) WithLevelFromDebug(debug bool) *Logger

Jump to

Keyboard shortcuts

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