fix: Simplify license information logging in handleLicensingInit function (#13253)

This commit is contained in:
Muhsin Shah C P 2025-07-08 14:30:21 +05:30 committed by GitHub
parent 9316b763fc
commit 563c354248
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 6 deletions

@ -1 +1 @@
Subproject commit ad35ce1820275c89a119520098b8e08a3b5c94c2
Subproject commit 456b2efaf22fc04176dc371337785ae03c050b5b

View file

@ -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() {