From 6278cdb6c748bc08c108bf65432368ea7fa31873 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Tue, 12 Mar 2024 16:22:16 +0100 Subject: [PATCH] feat: better logging for old and new frontend api differences (#6524) --- src/lib/features/frontend-api/frontend-api-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/features/frontend-api/frontend-api-controller.ts b/src/lib/features/frontend-api/frontend-api-controller.ts index 671351bd23..6485050856 100644 --- a/src/lib/features/frontend-api/frontend-api-controller.ts +++ b/src/lib/features/frontend-api/frontend-api-controller.ts @@ -195,7 +195,7 @@ export default class FrontendAPIController extends Controller { ) ) { this.logger.warn( - `old features and new features are different. Old count ${toggles.length}, new count ${newToggles.length}`, + `old features and new features are different. Old count ${toggles.length}, new count ${newToggles.length}, projects ${req.user.projects}, environment ${req.user.environment}`, ); } } else {