forked from mystiq/hydrogen-web
don't read from settings for now, as it is async
This commit is contained in:
parent
1183305d71
commit
07f8500d29
1 changed files with 5 additions and 3 deletions
|
@ -18,11 +18,13 @@ import {LogItem} from "./LogItem.js";
|
||||||
import {LogLevel} from "./LogLevel.js";
|
import {LogLevel} from "./LogLevel.js";
|
||||||
|
|
||||||
export class BaseLogger {
|
export class BaseLogger {
|
||||||
constructor({platform, baseLogLevel, anonymize}) {
|
constructor({platform}) {
|
||||||
this._openItems = new Set();
|
this._openItems = new Set();
|
||||||
this._platform = platform;
|
this._platform = platform;
|
||||||
this._anonymize = anonymize;
|
this._anonymize = false; //await platform.settingsStorage.getBool("anonymize", false);
|
||||||
this._baseLogLevel = baseLogLevel;
|
this._baseLogLevel = LogLevel.Info; //await platform.settingsStorage.getInt("baseLogLevel", LogLevel.Info);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
run(labelOrValues, callback, logLevel = this._baseLogLevel) {
|
run(labelOrValues, callback, logLevel = this._baseLogLevel) {
|
||||||
|
|
Loading…
Reference in a new issue