Comment out debug log

This commit is contained in:
Daniel Imms
2022-10-02 21:32:24 -07:00
parent 9259ec258f
commit 6316eee672
+2 -1
View File
@@ -336,7 +336,8 @@ export class TextureAtlas implements ITextureAtlas {
private _drawToCache(codeOrChars: number | string, bg: number, fg: number, ext: number): IRasterizedGlyph {
const chars = typeof codeOrChars === 'number' ? String.fromCharCode(codeOrChars) : codeOrChars;
console.log(`draw to cache "${chars}"`, bg, fg, ext);
// Uncomment for debugging
// console.log(`draw to cache "${chars}"`, bg, fg, ext);
this.hasCanvasChanged = true;