JuliaGizmos/Blink.jl

Julia log message do NOT show in VSCode terminal when using with Blink !

Opened this issue · 0 comments

using Interact
using Blink
f() = (println("ok");@info "I am f.")
w = Window()
b = button("Click!")
c = Interact.@map (&b;f())
body!(w,b)

click the button, when comparing of vscode and atom, the terminal output will be:
1 vscode:

ok
ok
ok
...

2 atom

[ Info: I am f.
ok
[ Info: I am f.
ok
[ Info: I am f.
ok
[ Info: I am f.
...

How can I make Julia log message show in vscode terminal?