mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 12:54:01 +03:00
FILE / ScuroNeko/mtg
logger/init.go
Исходный файл и его история в репозитории.
13 lines
503 B
Go
13 lines
503 B
Go
// Package logger has implementation of loggers for [mtglib.Logger] interface.
|
|
//
|
|
// Please see a description of that interface to get some agreements which are
|
|
// used by mtglib.
|
|
package logger
|
|
|
|
// StdLikeLogger is an interface which is close to [log.Logger]. This is
|
|
// commonly used by many 3pp tools. While mtglib itself does not need it, it is
|
|
// always a good idea to support it and have a transient end to end logging.
|
|
type StdLikeLogger interface {
|
|
Printf(format string, args ...interface{})
|
|
}
|