Comparing version 5.3.0-beta.3 to 5.3.0-beta.4
{ | ||
"name": "xterm", | ||
"description": "Full xterm terminal, in your browser", | ||
"version": "5.3.0-beta.3", | ||
"version": "5.3.0-beta.4", | ||
"main": "lib/xterm.js", | ||
@@ -6,0 +6,0 @@ "style": "css/xterm.css", |
@@ -36,3 +36,4 @@ /** | ||
public logLevel: LogLevelEnum = LogLevelEnum.OFF; | ||
private _logLevel: LogLevelEnum = LogLevelEnum.OFF; | ||
public get logLevel(): LogLevelEnum { return this._logLevel; } | ||
@@ -48,3 +49,3 @@ constructor( | ||
private _updateLogLevel(): void { | ||
this.logLevel = optionsKeyToLogLevel[this._optionsService.rawOptions.logLevel]; | ||
this._logLevel = optionsKeyToLogLevel[this._optionsService.rawOptions.logLevel]; | ||
} | ||
@@ -66,3 +67,3 @@ | ||
public debug(message: string, ...optionalParams: any[]): void { | ||
if (this.logLevel <= LogLevelEnum.DEBUG) { | ||
if (this._logLevel <= LogLevelEnum.DEBUG) { | ||
this._log(this._optionsService.options.logger?.debug.bind(this._optionsService.options.logger) ?? console.log, message, optionalParams); | ||
@@ -73,3 +74,3 @@ } | ||
public info(message: string, ...optionalParams: any[]): void { | ||
if (this.logLevel <= LogLevelEnum.INFO) { | ||
if (this._logLevel <= LogLevelEnum.INFO) { | ||
this._log(this._optionsService.options.logger?.info.bind(this._optionsService.options.logger) ?? console.info, message, optionalParams); | ||
@@ -80,3 +81,3 @@ } | ||
public warn(message: string, ...optionalParams: any[]): void { | ||
if (this.logLevel <= LogLevelEnum.WARN) { | ||
if (this._logLevel <= LogLevelEnum.WARN) { | ||
this._log(this._optionsService.options.logger?.warn.bind(this._optionsService.options.logger) ?? console.warn, message, optionalParams); | ||
@@ -87,3 +88,3 @@ } | ||
public error(message: string, ...optionalParams: any[]): void { | ||
if (this.logLevel <= LogLevelEnum.ERROR) { | ||
if (this._logLevel <= LogLevelEnum.ERROR) { | ||
this._log(this._optionsService.options.logger?.error.bind(this._optionsService.options.logger) ?? console.error, message, optionalParams); | ||
@@ -90,0 +91,0 @@ } |
@@ -160,3 +160,3 @@ /** | ||
logLevel: LogLevelEnum; | ||
readonly logLevel: LogLevelEnum; | ||
@@ -163,0 +163,0 @@ debug(message: any, ...optionalParams: any[]): void; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
2292657
23898