Fix lint error

This commit is contained in:
Alessio 2024-12-22 08:08:47 -08:00
parent 8d29e25823
commit 29666bd51b

View File

@ -34,7 +34,7 @@ func (t *BackgroundTask) Do() {
t.log.Print("(the following is an object, not an error)") t.log.Print("(the following is an object, not an error)")
t.log.Print(r) t.log.Print(r)
} }
t.log.Output(2, string(debug.Stack())) panic_if(t.log.Output(2, string(debug.Stack())))
} }
}() }()