log

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Aug 27, 2022 License: MPL-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Infof

func Infof(format string, args ...interface{})

Infof writes a log entry.

func Panic

func Panic(args ...interface{})

Panic writes a log entry. It uses Logger if not nil, otherwise it uses the default log.Logger.

func Panicf

func Panicf(format string, args ...interface{})

Panicf writes a log entry. It uses Logger if not nil, otherwise it uses the default log.Logger.

func Print

func Print(args ...interface{})

Print writes a log entry. It uses Logger if not nil, otherwise it uses the default log.Logger.

func Printf

func Printf(format string, args ...interface{})

Printf writes a log entry. It uses Logger if not nil, otherwise it uses the default log.Logger.

func Println

func Println(args ...interface{})

Println writes a log entry. It uses Logger if not nil, otherwise it uses the default log.Logger.

func Warnf

func Warnf(format string, args ...interface{})

Warnf writes a log entry.

Types

type StdLogger

type StdLogger interface {
	Panic(args ...interface{})
	Fatalln(args ...interface{})
	Panicf(format string, args ...interface{})
	Print(args ...interface{})
	Println(args ...interface{})
	Printf(format string, args ...interface{})
}

StdLogger interface for Standard Logger.

var Logger StdLogger = log.New(os.Stdout, "", log.LstdFlags)

Logger is an optional custom logger.

Jump to

Keyboard shortcuts

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