We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 852729f commit d41f7caCopy full SHA for d41f7ca
src/engine/javascript.js
@@ -42,7 +42,7 @@ async function execCode(code) {
42
function patchConsole(messages) {
43
const consoleProxy = new Proxy(console, {
44
get(target, prop) {
45
- if (prop === "log" || prop === "error" || prop === "warn") {
+ if (prop === "log" || prop === "error" || prop === "warn" || prop === "info" || prop === "debug") {
46
return (...args) => {
47
const message = args.map((obj) => stringify(obj)).join(" ");
48
messages.push(message);
0 commit comments