| 12345678910111213141516171819202122232425 | package logimport (	"io")type StringWriter = io.StringWritertype Printer interface {	Println(f string, v ...any)}type Prefix interface {	Printer	Prefix(prefix string, f string, v ...any)}type Logger interface {	Error(f string, v ...any)	Warn(f string, v ...any)	Info(f string, v ...any)	Debug(f string, v ...any)	CallDepthPlus()	CallDepthMinus()}
 |