Stability improvements

Removing Debug console auto scroll to restore stability. having it inside utils.mjs sometimes causes 9.xx (9.60 at least) firmwre to show unresponsive browser tab and freeze if any operation was made (launching an app or restarting the console)..
This commit is contained in:
ArabPixel
2025-10-21 13:51:02 +02:00
parent 045e2a25ae
commit cb73653c18
2 changed files with 1 additions and 4 deletions

View File

@@ -29,11 +29,8 @@ export function die(msg = "") {
}
const console = document.getElementById("console");
const debugConsole = document.getElementById("DebugConsole");
export function log(msg = "") {
console.append(`${msg}\n`);
// scroll console to bottom
debugConsole.scrollTop = debugConsole.scrollHeight;
}
export function clear_log() {