mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
fix: Simplify license information logging in handleLicensingInit function (#13253)
This commit is contained in:
parent
9316b763fc
commit
563c354248
2 changed files with 2 additions and 6 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit ad35ce1820275c89a119520098b8e08a3b5c94c2
|
||||
Subproject commit 456b2efaf22fc04176dc371337785ae03c050b5b
|
||||
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue