Skip to content

Commit 3db0d75

Browse files
committed
fix: add missing comma to logging config
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent 4a2ab80 commit 3db0d75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/api/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func Start(cfg *config.Config) error {
4848
router.Use(ginzap.GinzapWithConfig(accessLogger, &ginzap.Config{
4949
TimeFormat: time.RFC3339,
5050
UTC: true,
51-
SkipPaths: []string{"/healthcheck"}
51+
SkipPaths: []string{"/healthcheck"},
5252
}))
5353
router.Use(ginzap.RecoveryWithZap(accessLogger, true))
5454
// Standard logging

0 commit comments

Comments
 (0)