From 7f0e554dea7eca9b08c3f8ebe7dada8389ef619c Mon Sep 17 00:00:00 2001 From: "Alt, Michael" Date: Tue, 17 Dec 2019 14:46:50 +0100 Subject: [PATCH] added logging --- core/display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/display.js b/core/display.js index 4014f9fb..170f9e78 100644 --- a/core/display.js +++ b/core/display.js @@ -734,7 +734,7 @@ export default class Display { let ready = true; while (ready && this._renderQ.length > 0) { const a = this._renderQ[0]; - console.log(a); + Log.Debug(a); switch (a.type) { case 'flip': this.flip(true);