Skip to content

Commit

Permalink
refactor(logging): use text instead of json
Browse files Browse the repository at this point in the history
  • Loading branch information
Ric Featherstone authored and 06kellyjac committed Dec 21, 2023
1 parent f553c20 commit 4dbf2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logging/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ func Configure() {
Level: slog.LevelError,
}

logger := slog.New(slog.NewJSONHandler(os.Stdout, handlerOptions))
logger := slog.New(slog.NewTextHandler(os.Stdout, handlerOptions))
slog.SetDefault(logger)
}

0 comments on commit 4dbf2e4

Please sign in to comment.