mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ADF-3191] Fix userprefrence oauth2 (#3488)
* remove user preference setting save * fix host setting test * remove userPreferences test * fix title service test * remove unused imports * restore input align * fix service import in test tag rating
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
/* tslint:disable:no-console */
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { AppConfigService } from '../app-config/app-config.service';
|
||||
import { AppConfigService, AppConfigValues } from '../app-config/app-config.service';
|
||||
import { logLevels, LogLevelsEnum } from '../models/log-levels.model';
|
||||
import { Subject } from 'rxjs/Subject';
|
||||
|
||||
@@ -26,7 +26,7 @@ import { Subject } from 'rxjs/Subject';
|
||||
export class LogService {
|
||||
|
||||
get currentLogLevel() {
|
||||
let configLevel: string = this.appConfig.get<string>('logLevel');
|
||||
let configLevel: string = this.appConfig.get<string>(AppConfigValues.LOG_LEVEL);
|
||||
|
||||
if (configLevel) {
|
||||
return this.getLogLevel(configLevel);
|
||||
|
Reference in New Issue
Block a user