From 6f718d8d91be9d85cc0ad266b46d0a2d19dd89bb Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Thu, 13 Apr 2023 15:30:34 +0100 Subject: [PATCH] fix(logging): should log headers in request; add missing return statement (#1529) --- packages/server/logging/expressLogging.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/server/logging/expressLogging.ts b/packages/server/logging/expressLogging.ts index 73e04e1ab..5e9cf71d9 100644 --- a/packages/server/logging/expressLogging.ts +++ b/packages/server/logging/expressLogging.ts @@ -61,7 +61,7 @@ export const LoggingExpressMiddleware = HttpLogger({ // and that's a privacy issue. return false } - ![ + return ![ 'cookie', 'authorization', 'cf-connecting-ip',