Explorar el Código

Add room for more error outputting

ApisNecros hace 1 año
padre
commit
a09bff767f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      starfish.js

+ 2 - 1
starfish.js

@@ -322,7 +322,8 @@ class CodeBox {
             }
         }
         catch(e) {
-            console.error(`Something smells fishy!\nInstruction: ${instruction}\nStack: ${JSON.stringify(this.stack.stack)}`);
+            console.error(`Something smells fishy!\n${e != "" ? `${e}\n` : ""}Instruction: ${instruction}\nStack: ${JSON.stringify(this.stack.stack)}`);
+            return true;
         }
 
         return output;