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.
2 parents 6418376 + f7d37f9 commit 9418d38Copy full SHA for 9418d38
share/jupyter/voila/templates/base/log.macro.html.j2
@@ -6,13 +6,13 @@
6
const _warn = console.warn;
7
const _error = console.error;
8
9
- function post(level, args) {
+ function post(payload) {
10
try {
11
- window.top.postMessage({ level: "debug", msg: ["[Voilà]:", ...args] });
+ window.top.postMessage(payload);
12
} catch(err) {
13
window.top.postMessage({ level: "debug", msg: ["[Voilà]:",
14
"Issue cloning object when posting log message, JSON stringify version is:",
15
- JSON.stringify(args)
+ JSON.stringify(payload)
16
] });
17
}
18
0 commit comments