fix:#56 removed ip logs from ical service

This commit is contained in:
Elmar Kresse
2024-10-07 00:17:03 +02:00
parent d8a7cc5387
commit 606ce280ba

View File

@ -69,7 +69,12 @@ func main() {
DataManagerURL: "http://" + host + ":8090",
}
fiberApp.Use(logger.New())
fiberApp.Use(logger.New(
logger.Config{
Format: "${time} | ${status} | ${latency} | ${method} - ${path} | ${error}\n",
TimeFormat: "02-Jan-2006 15:04:05",
},
))
// Add routes to the app instance for the data-manager ical service
service.AddFeedRoutes(app)