From 2a55983bc963dfca9eb45676ab6582b9d48cc22c Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 5 Dec 2020 14:44:28 +1100 Subject: [PATCH] Fix logger --- v2/pkg/logger/logger.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/v2/pkg/logger/logger.go b/v2/pkg/logger/logger.go index 9cede09df..362f32a23 100644 --- a/v2/pkg/logger/logger.go +++ b/v2/pkg/logger/logger.go @@ -23,11 +23,11 @@ const ( // Logger specifies the methods required to attach // a logger to a Wails application type Logger interface { - Print(message string) error - Trace(message string) error - Debug(message string) error - Info(message string) error - Warning(message string) error - Error(message string) error - Fatal(message string) error + Print(message string) + Trace(message string) + Debug(message string) + Info(message string) + Warning(message string) + Error(message string) + Fatal(message string) }