logger

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Jun 6, 2023 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Logger

type Logger interface {
	Println(v ...interface{})
	Printf(format string, v ...interface{})
}

Logger接口

var (
	ERROR Logger = log.New(os.Stderr, "mqtt-broker[error]", log.Lshortfile|log.Ldate|log.Ltime)
	WARN  Logger = log.New(os.Stdout, "mqtt-broker[warn]", log.Lshortfile|log.Ldate|log.Ltime)
	INFO  Logger = log.New(os.Stdout, "mqtt-broker[info]", log.Lshortfile|log.Ldate|log.Ltime)
	DEBUG Logger = log.New(os.Stdout, "mqtt-broker[debug]", log.Lshortfile|log.Ldate|log.Ltime)
)

Jump to

Keyboard shortcuts

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