From 29666bd51b6bf5d381762372c16aa3f4b78a895b Mon Sep 17 00:00:00 2001 From: Alessio Date: Sun, 22 Dec 2024 08:08:47 -0800 Subject: [PATCH] Fix lint error --- internal/webserver/stopwatch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/webserver/stopwatch.go b/internal/webserver/stopwatch.go index 217da5d..d95ca2c 100644 --- a/internal/webserver/stopwatch.go +++ b/internal/webserver/stopwatch.go @@ -34,7 +34,7 @@ func (t *BackgroundTask) Do() { t.log.Print("(the following is an object, not an error)") t.log.Print(r) } - t.log.Output(2, string(debug.Stack())) + panic_if(t.log.Output(2, string(debug.Stack()))) } }()