log

package
v0.9.0 Latest Latest
Warning

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

Go to latest
Published: Aug 31, 2022 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	LevelError = Level("error")
	LevelWarn  = Level("warn")
	LevelInfo  = Level("info")
	LevelDebug = Level("debug")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Level

type Level string

Level ログレベル

type Logger

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

Logger ログ出力

func NewLogger

func NewLogger(opt *LoggerOption) *Logger

NewLogger 指定のオプションで新しいロガーを生成して返す

optは省略(nil)でも可、デフォルトでは標準エラーに出力される

func (*Logger) Debug

func (l *Logger) Debug(keyvals ...interface{}) error

Debug レベルDebugでログ出力

func (*Logger) Error

func (l *Logger) Error(keyvals ...interface{}) error

Error レベルErrorでログ出力

func (*Logger) Fatal

func (l *Logger) Fatal(keyvals ...interface{})

func (*Logger) Info

func (l *Logger) Info(keyvals ...interface{}) error

Info レベルInfoでログ出力

func (*Logger) Log added in v0.1.0

func (l *Logger) Log(keyValues ...interface{}) error

func (*Logger) Reset

func (l *Logger) Reset()

Reset 現在のLoggerOptionを元にロガーをリセット

Withxxxの影響を元に戻したい時などに利用する

func (*Logger) Warn

func (l *Logger) Warn(keyvals ...interface{}) error

Warn レベルWarnでログ出力

func (*Logger) With

func (l *Logger) With(keyvals ...interface{}) *Logger

With 指定されたkey-valuesを持つコンテキストロガーを返す

see: https://pkg.go.dev/github.com/go-kit/log

func (*Logger) WithPrefix

func (l *Logger) WithPrefix(keyvals ...interface{}) *Logger

WithPrefix 指定されたkey-valuesを持つコンテキストロガーを返す

see: https://pkg.go.dev/github.com/go-kit/log

func (*Logger) WithSuffix

func (l *Logger) WithSuffix(keyvals ...interface{}) *Logger

WithSuffix 指定されたkey-valuesを持つコンテキストロガーを返す

see: https://pkg.go.dev/github.com/go-kit/log

type LoggerOption

type LoggerOption struct {
	Writer    io.Writer // 出力先(デフォルトはos.Stderr)
	JSON      bool      // JSON出力するか(falseの場合はlogfmt)
	TimeStamp bool      // タイムスタンプを含めるか
	Caller    bool      // caller(呼び出し箇所)を含めるか
	Level     Level     // 出力するログのレベル
}

LoggerOption ログ出力のオプション

Jump to

Keyboard shortcuts

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