From 4af2a77f6f9bed8910725b2cae04ae2569f3659b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Lewandowski?= Date: Mon, 11 Dec 2023 19:16:38 +0100 Subject: [PATCH] chore(BUX-200): change log type --- cmd/server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/server/main.go b/cmd/server/main.go index 8e86c086c..a61e95413 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -35,7 +35,7 @@ func main() { // Load the Application Services var services *config.AppServices if services, err = appConfig.LoadServices(context.Background()); err != nil { - defaultLogger.Error().Msgf(dictionary.GetInternalMessage(dictionary.ErrorLoadingService), config.ApplicationName, err.Error()) + defaultLogger.Fatal().Msgf(dictionary.GetInternalMessage(dictionary.ErrorLoadingService), config.ApplicationName, err.Error()) return }