Skip to content

Commit 3618838

Browse files
committed
actually ignore server-status
1 parent 48a8c2e commit 3618838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/services/webapp/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class WebApp extends Service {
2424
logger: log,
2525
base: undefined,
2626
level: process.env.LOG_LEVEL || "info",
27-
autoLogging: { ignore: req => PATH_IGNORE.includes(req.path)},
27+
autoLogging: { ignore: req => PATH_IGNORE.some(p => req.path.startsWith(p))},
2828
})
2929
);
3030

0 commit comments

Comments
 (0)