mirror of
https://github.com/taigrr/wails.git
synced 2026-04-15 11:21:15 -07:00
11 lines
392 B
Go
11 lines
392 B
Go
package logger
|
|
|
|
type Logger interface {
|
|
Print(message string, args ...interface{}) error
|
|
Trace(message string, args ...interface{}) error
|
|
Debug(message string, args ...interface{}) error
|
|
Info(message string, args ...interface{}) error
|
|
Warning(message string, args ...interface{}) error
|
|
Error(message string, args ...interface{}) error
|
|
Fatal(message string, args ...interface{}) error
|
|
} |