From 7c5ad6b7a9839315f68ca47b718e8b0dcd337ace Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Tue, 19 Dec 2023 05:44:55 -0800 Subject: [PATCH] Remove tracing drawToCache call This was a little noisy and didn't end up being that useful --- src/browser/renderer/shared/TextureAtlas.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/browser/renderer/shared/TextureAtlas.ts b/src/browser/renderer/shared/TextureAtlas.ts index f3f67b8b21..4af8685e50 100644 --- a/src/browser/renderer/shared/TextureAtlas.ts +++ b/src/browser/renderer/shared/TextureAtlas.ts @@ -15,7 +15,6 @@ import { IdleTaskQueue } from 'common/TaskQueue'; import { IColor } from 'common/Types'; import { AttributeData } from 'common/buffer/AttributeData'; import { Attributes, DEFAULT_COLOR, DEFAULT_EXT, UnderlineStyle } from 'common/buffer/Constants'; -import { traceCall } from 'common/services/LogService'; import { IUnicodeService } from 'common/services/Services'; /** @@ -424,7 +423,6 @@ export class TextureAtlas implements ITextureAtlas { return this._config.colors.contrastCache; } - @traceCall private _drawToCache(codeOrChars: number | string, bg: number, fg: number, ext: number, restrictToCellHeight: boolean = false): IRasterizedGlyph { const chars = typeof codeOrChars === 'number' ? String.fromCharCode(codeOrChars) : codeOrChars;