5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 06:01:52 +08:00

Fix logger

This commit is contained in:
Lea Anthony 2020-12-05 14:44:28 +11:00
parent 7e42052da0
commit 2a55983bc9
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -23,11 +23,11 @@ const (
// Logger specifies the methods required to attach // Logger specifies the methods required to attach
// a logger to a Wails application // a logger to a Wails application
type Logger interface { type Logger interface {
Print(message string) error Print(message string)
Trace(message string) error Trace(message string)
Debug(message string) error Debug(message string)
Info(message string) error Info(message string)
Warning(message string) error Warning(message string)
Error(message string) error Error(message string)
Fatal(message string) error Fatal(message string)
} }