feat(logging): metrics endpoint is logged as debug level, not info (#2490)

This commit is contained in:
Iain Sproat
2024-07-10 13:25:52 +01:00
committed by GitHub
parent d12e80035d
commit 1d2bc481c8
@@ -37,6 +37,7 @@ export const LoggingExpressMiddleware = HttpLogger({
}
if (req.url === '/readiness' || req.url === '/liveness') return 'debug'
if (req.url === '/metrics') return 'debug'
return 'info'
},