From aed2d2fa091a8911ac6ea3272f6d4fcf98853cad Mon Sep 17 00:00:00 2001 From: rayaman Date: Thu, 26 Jun 2025 11:20:30 -0400 Subject: [PATCH] added error log --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index d944d05..83a33fb 100644 --- a/main.go +++ b/main.go @@ -20,5 +20,5 @@ func main() { http.HandleFunc("/report", backend.ReportHandler) http.HandleFunc("/", backend.BinaryHandler) err := http.ListenAndServe(":"+port, nil) - utils.Logger.Debugf("Exit error: %v", err) + utils.Logger.Errorf("Exit error: %v", err) }