fix: esxi部署失败的bug

This commit is contained in:
xiaojunnuo
2026-02-09 13:49:00 +08:00
parent 1ee1d61c74
commit 1e44115461
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ export function resetLogConfigure() {
});
}
resetLogConfigure();
export const logger = log4js.getLogger("default");
export const logger: ILogger = log4js.getLogger("default") as any;
export function resetLogFilePath(filePath: string) {
logFilePath = filePath;
+1 -1
View File
@@ -1,4 +1,4 @@
import * as _ from 'lodash-es';
import * as _ from "lodash-es";
function isUnMergeable(srcValue: any) {
return srcValue != null && srcValue instanceof UnMergeable;
}