@mediusinc/mng-commons 6.1.0 → 6.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,6 +19,7 @@ export declare function adjustRouteMenuLazyChildrenRouterLinks(rootMenuItem: Pri
19
19
  disabled?: boolean;
20
20
  routerLink?: string | Array<string> | null;
21
21
  href?: string;
22
+ hrefExternalIcon?: string | null;
22
23
  target?: string;
23
24
  queryParams?: {
24
25
  [k: string]: any;
@@ -18,6 +18,7 @@ export interface CommonsMenuItem {
18
18
  disabled?: boolean;
19
19
  routerLink?: string | Array<string> | null;
20
20
  href?: string;
21
+ hrefExternalIcon?: string | null;
21
22
  target?: string;
22
23
  queryParams?: {
23
24
  [k: string]: any;
@@ -1100,8 +1100,8 @@ class LoggerService {
1100
1100
  return;
1101
1101
  }
1102
1102
  const logConfig = (LoggerService._configurationService?.getConfigValue)?.('log');
1103
- if ((this.category && log.level < (logConfig?.category?.[this.category]?.level ?? logConfig?.level ?? this.defaultLogLevel)) ||
1104
- (!this.category && log.level < (logConfig?.level ?? this.defaultLogLevel))) {
1103
+ if ((log.category && log.level < (logConfig?.category?.[log.category]?.level ?? logConfig?.level ?? this.defaultLogLevel)) ||
1104
+ (!log.category && log.level < (logConfig?.level ?? this.defaultLogLevel))) {
1105
1105
  return;
1106
1106
  }
1107
1107
  if (logConfig?.timestampFormat) {
@@ -3475,7 +3475,7 @@ class CommonsConfigurationService {
3475
3475
  addModuleConfigSource(config) {
3476
3476
  this.moduleConfig = config;
3477
3477
  this.mergeConfigs();
3478
- this.logger?.debug(`Module configuration source added.`);
3478
+ this.logger?.debug(`Module configuration source added.`, this.moduleConfig);
3479
3479
  }
3480
3480
  /**
3481
3481
  * Add project environment source.