Update src/common/InputHandler.ts

This commit is contained in:
Daniel Imms
2025-10-22 19:02:14 -07:00
committed by GitHub
parent 09e26980d3
commit 59241e467c
+1 -1
View File
@@ -444,7 +444,7 @@ export class InputHandler extends Disposable implements IInputHandler {
}
// Log debug data, the log level gate is to prevent extra work in this hot path
if (this._logService.logLevel === LogLevelEnum.DEBUG) {
if (this._logService.logLevel <= LogLevelEnum.DEBUG) {
this._logService.debug(`parsing data ${typeof data === 'string' ? ` "${data}"` : ` "${Array.prototype.map.call(data, e => String.fromCharCode(e)).join('')}"`}`);
}
if (this._logService.logLevel === LogLevelEnum.TRACE) {