diff --git a/src/snek/templates/sandbox.html b/src/snek/templates/sandbox.html
index 7e2a038..68ef32e 100644
--- a/src/snek/templates/sandbox.html
+++ b/src/snek/templates/sandbox.html
@@ -20,7 +20,7 @@ class StarField {
this.originalColor = getComputedStyle(document.documentElement).getPropertyValue("--star-color").trim();
this._createStars();
window.stars = this.positionMap;
- this.patchConsole()
+ //this.patchConsole()
this.starSignal = (() => {
const positionMap = this.positionMap;
@@ -241,6 +241,7 @@ const originalConsole = {
};
const me = this
// Override console methods
+
console.info = function(...args) {
me.showLogEvent('info', args);
me.createConsoleStar('info', args);