Compare commits

...

1 Commits

Author SHA1 Message Date
Adrian Zürcher
81e05851bc fix wrong log message 2026-02-10 21:58:25 +01:00

View File

@@ -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
}