From 0a67c23b00a2ef8bab84546eae3678edb773a521 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Thu, 5 Aug 2021 15:57:06 +0100 Subject: [PATCH] Don't log BBB shared secret --- src/api/dimension/DimensionBigBlueButtonService.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/api/dimension/DimensionBigBlueButtonService.ts b/src/api/dimension/DimensionBigBlueButtonService.ts index 1f32304..4d5d022 100644 --- a/src/api/dimension/DimensionBigBlueButtonService.ts +++ b/src/api/dimension/DimensionBigBlueButtonService.ts @@ -362,9 +362,6 @@ export class DimensionBigBlueButtonService { // We URL encode each value as a browser would. If we don't, our resulting checksum will not match. const widgetQueryString = this.queryStringFromObject(queryParameters, encodeAsBrowser); - LogService.info("BigBlueButton", "Built widget string:" + widgetQueryString); - LogService.info("BigBlueButton", "Hashing:" + apiCallName + widgetQueryString + config.bigbluebutton.sharedSecret); - // Hash the api name and query parameters to get the checksum, and add it to the set of query parameters return sha256(apiCallName + widgetQueryString + config.bigbluebutton.sharedSecret); }