From 563c354248b3af1c136e708b49f706bab19dead3 Mon Sep 17 00:00:00 2001 From: Muhsin Shah C P Date: Tue, 8 Jul 2025 14:30:21 +0530 Subject: [PATCH] fix: Simplify license information logging in handleLicensingInit function (#13253) --- frontend/ee | 2 +- server/src/main.ts | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/frontend/ee b/frontend/ee index ad35ce1820..456b2efaf2 160000 --- a/frontend/ee +++ b/frontend/ee @@ -1 +1 @@ -Subproject commit ad35ce1820275c89a119520098b8e08a3b5c94c2 +Subproject commit 456b2efaf22fc04176dc371337785ae03c050b5b diff --git a/server/src/main.ts b/server/src/main.ts index ccd32eadd7..d87e1f41ac 100644 --- a/server/src/main.ts +++ b/server/src/main.ts @@ -54,12 +54,8 @@ async function handleLicensingInit(app: NestExpressApplication) { const license = License.default; licenseUtilService.validateHostnameSubpath(license.Instance()?.domains); - const { isValid, licenseType, terms } = License.Instance(); console.log( - `\nšŸ“‘ License Information: - - Valid: ${isValid} - - Type: ${licenseType} - - Terms:\n${JSON.stringify(terms, null, 2)}\n` + `License valid : ${license.Instance().isValid} License Terms : ${JSON.stringify(license.Instance().terms)} šŸš€` ); } function replaceSubpathPlaceHoldersInStaticAssets() {