From 75752d3fb13b1c5b65f82c4238d6bc62747c516d Mon Sep 17 00:00:00 2001 From: Elmar Kresse Date: Tue, 18 Jun 2024 18:18:14 +0200 Subject: [PATCH] feat:#36 fixed slog attribute --- services/ical/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/ical/main.go b/services/ical/main.go index 353af6d..1769786 100644 --- a/services/ical/main.go +++ b/services/ical/main.go @@ -67,5 +67,5 @@ func main() { // Add routes to the app instance for the data-manager ical service service.AddFeedRoutes(app) - slog.Info("Starting ical service", fiberApp.Listen(":8091")) + slog.Info("Starting ical service", "fiberApp", fiberApp.Listen(":8091")) }