Skip to content

Commit

Permalink
fix(server): log redirect reqs as well
Browse files Browse the repository at this point in the history
  • Loading branch information
fabis94 committed Feb 12, 2024
1 parent 78891e8 commit d3ad2ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/logging/expressLogging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const LoggingExpressMiddleware = HttpLogger({
} else if (res.statusCode >= 500 || err) {
return 'error'
} else if (res.statusCode >= 300 && res.statusCode < 400) {
return 'silent'
return 'info'
}
return 'info'
},
Expand Down

0 comments on commit d3ad2ea

Please sign in to comment.