@open-rlb/ng-app 3.0.12 → 3.0.13

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.
@@ -156,10 +156,9 @@ const LEVEL_PRIORITIES = {
156
156
  debug: 4,
157
157
  log: 5,
158
158
  };
159
- class AppLoggerService extends AbstractLoggerService {
159
+ class AppLoggerService {
160
160
  constructor() {
161
- super();
162
- this.currentLevel = 'off';
161
+ this.currentLevel = 'log';
163
162
  this.timestamps = true;
164
163
  }
165
164
  setLogLevel(level) {
@@ -1391,7 +1390,7 @@ class AuthenticationService {
1391
1390
  }
1392
1391
  get isAuthenticated$() {
1393
1392
  return this.oidc.isAuthenticated$.pipe(map((isAuthenticated) => {
1394
- this.logger.warn(`oidc isAuthenticated$ check, response: ${JSON.stringify(isAuthenticated)}; looking for isAuthenticated of ${this.currentProvider?.configId} configId`);
1393
+ this.logger.log(`oidc isAuthenticated$ check, response: ${JSON.stringify(isAuthenticated)}; looking for isAuthenticated of ${this.currentProvider?.configId} configId`);
1395
1394
  return isAuthenticated.allConfigsAuthenticated.find(o => o.configId === this.currentProvider?.configId)?.isAuthenticated || false;
1396
1395
  }));
1397
1396
  }