Pluto: How to redirect the logging message to the terminal?

Current version (or versions) displays @info message in the cell instead of in the terminal. I have a very long simulation to run and it emits many messages per iteration. These messages are clustering in a line which I can see nothing. More importantly, it makes my notebook really slow! I’d restore the previous behavior of Pluto to show all these messages in the terminal. Is there a way to do that?

1 Like

I think you can use the option capture_stdout as of Pluto version v0.19.1.

import Pluto; Pluto.run(capture_stdout=false)
2 Likes