From f1a0a5c0bb2045764bfc9f277ef35ad6a17e0c7d Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 6 May 2025 13:01:45 +0200 Subject: [PATCH] backend: Enhance logging for webhook configuration in logEnvVars function --- backend/src/environment.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/backend/src/environment.ts b/backend/src/environment.ts index f61691d..cd3eb11 100644 --- a/backend/src/environment.ts +++ b/backend/src/environment.ts @@ -104,6 +104,11 @@ export const logEnvVars = () => { console.log('MEET ACCESS TOKEN EXPIRATION: ', text(MEET_ACCESS_TOKEN_EXPIRATION)); console.log('MEET REFRESH TOKEN EXPIRATION: ', text(MEET_REFRESH_TOKEN_EXPIRATION)); console.log('MEET PREFERENCES STORAGE:', text(MEET_PREFERENCES_STORAGE_MODE)); + console.log('MEET_WEBHOOK_ENABLED:', text(MEET_WEBHOOK_ENABLED)); + + if (MEET_WEBHOOK_ENABLED === 'true') { + console.log('MEET_WEBHOOK_URL:', text(MEET_WEBHOOK_URL)); + } console.log('---------------------------------------------------------'); console.log('LIVEKIT Configuration');