Fix uibinder global logger collision
Some checks failed
Build / release (macos-latest) (push) Has been cancelled
Build / release (ubuntu-latest) (push) Has been cancelled
Build / release (windows-latest) (push) Has been cancelled
Windows Smoke Test / windows-smoke (push) Has been cancelled

This commit is contained in:
2026-05-06 05:06:43 +09:00
parent a6ed744b82
commit 316ce0e0dc

View File

@@ -4,7 +4,7 @@
*/ */
// Requirements // Requirements
const path = require('path') const path = require('path')
const { LoggerUtil } = require('helios-core') const { LoggerUtil: HeliosLoggerUtil } = require('helios-core')
const { Type } = require('helios-distribution-types') const { Type } = require('helios-distribution-types')
const AuthManager = require('./assets/js/authmanager') const AuthManager = require('./assets/js/authmanager')
@@ -16,7 +16,7 @@ let fatalStartupError = false
let mainUiBootstrapStarted = false let mainUiBootstrapStarted = false
let mainUiBootstrapped = false let mainUiBootstrapped = false
const loggerUIBinder = LoggerUtil.getLogger('UIBinder') const loggerUIBinder = HeliosLoggerUtil.getLogger('UIBinder')
// Mapping of each view to their container IDs. // Mapping of each view to their container IDs.
const VIEWS = { const VIEWS = {