From 81e05851bc51ae5c71f6f6df5921aae1433db8c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Z=C3=BCrcher?= Date: Tue, 10 Feb 2026 21:58:25 +0100 Subject: [PATCH] fix wrong log message --- api/reportHandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/reportHandler.go b/api/reportHandler.go index a84ec9c..9be6a45 100644 --- a/api/reportHandler.go +++ b/api/reportHandler.go @@ -15,7 +15,7 @@ type counter struct { func (a *APIHandler) GetReport(c *gin.Context) { if !a.DBHandlerIsInitialized() { - a.logger.Error("DeleteEvent", "database handler is not initialized") + a.logger.Error("GetReport", "database handler is not initialized") c.JSON(http.StatusInternalServerError, nil) return }