Skip to content

Commit

Permalink
fix(BUX-361): passing logger to load function
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-4chain committed Dec 14, 2023
1 parent 5e5a5a1 commit 3aa1ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func main() {
defaultLogger := logging.GetDefaultLogger()

// Load the Application Configuration
appConfig, err := config.Load()
appConfig, err := config.Load(defaultLogger)
if err != nil {
defaultLogger.Fatal().Msgf(dictionary.GetInternalMessage(dictionary.ErrorLoadingConfig), err.Error())
return
Expand Down

0 comments on commit 3aa1ec6

Please sign in to comment.