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

**URL:** https://discourse.julialang.org/t/pluto-how-to-redirect-the-logging-message-to-the-terminal/80232
**Category:** Pluto
**Tags:** question
**Created:** [April 29, 2022, 12:04am UTC](https://discourse.julialang.org/t/pluto-how-to-redirect-the-logging-message-to-the-terminal/80232 "2022-04-29T00:04:47Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![liuyxpp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/liuyxpp/32/9870_2.png) [@liuyxpp](https://discourse.julialang.org/u/liuyxpp)
#### Post date: [April 29, 2022, 12:04am UTC](https://discourse.julialang.org/t/pluto-how-to-redirect-the-logging-message-to-the-terminal/80232/1 "2022-04-29T00:04:47Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![moeddel](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/moeddel/32/18641_2.png) [@moeddel](https://discourse.julialang.org/u/moeddel)
#### Post date: [April 29, 2022, 6:24am UTC](https://discourse.julialang.org/t/pluto-how-to-redirect-the-logging-message-to-the-terminal/80232/2 "2022-04-29T06:24:35Z")

</div>

I think you can use the option `capture_stdout` as of Pluto version [v0.19.1](https://github.com/fonsp/Pluto.jl/releases/tag/v0.19.1).

```julia
import Pluto; Pluto.run(capture_stdout=false)

```
