# How to stop console from aggregating data being printed to it

**URL:** https://forum.makecode.com/t/how-to-stop-console-from-aggregating-data-being-printed-to-it/13732
**Category:** Arcade
**Created:** [May 23, 2022, 4:31pm UTC](https://forum.makecode.com/t/how-to-stop-console-from-aggregating-data-being-printed-to-it/13732 "2022-05-23T16:31:15Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![mprogers](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/mprogers/32/123_2.png) [@mprogers](https://forum.makecode.com/u/mprogers)
#### Post date: [May 23, 2022, 4:31pm UTC](https://forum.makecode.com/t/how-to-stop-console-from-aggregating-data-being-printed-to-it/13732/1 "2022-05-23T16:31:15Z")

</div>

I’m sending a series of H and T strings to the console, and it’s aggregating repeated H’s and T’s, so instead of, say  
H  
H  
T  
T  
T  
I’m getting  
2H  
3T

Is there someway to turn off that behavior?

---

<div class="post-metadata">

### Author: ![jwunderl](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/jwunderl/32/5308_2.png) [@jwunderl](https://forum.makecode.com/u/jwunderl)
#### Post date: [May 23, 2022, 4:38pm UTC](https://forum.makecode.com/t/how-to-stop-console-from-aggregating-data-being-printed-to-it/13732/2 "2022-05-23T16:38:41Z")

</div>

We don’t have a way to disable this behavior at the moment, but we are looking at the console view for future updates and this ‘feature’ is one we’ve seen as confusing before (it was added near the beginning of makecode and hasn’t been updated since then).

Sorry about that / thanks for the feedback, we’ll keep this in mind when we refresh this view.

---

<div class="post-metadata">

### Author: ![jwunderl](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.makecode.com/jwunderl/32/5308_2.png) [@jwunderl](https://forum.makecode.com/u/jwunderl)
#### Post date: [June 15, 2022, 1:55am UTC](https://forum.makecode.com/t/how-to-stop-console-from-aggregating-data-being-printed-to-it/13732/3 "2022-06-15T01:55:53Z")

</div>

Quick update, we managed to sneak a quick fix for this in for our upcoming micro:bit release, meaning it will be available in arcade after the next major release there 🙂 Here’s the change [https://github.com/microsoft/pxt/pull/8904](https://github.com/microsoft/pxt/pull/8904)

The reason it was added in like that in the first place was to match typical webdev consoles (e.g. chrome dev tools, batching can help with e.g. repeated error messages on a webpage), but I think there’s a pretty strong argument that this use case is much closer to a cli console (e.g. node), which is why we agreed on removing that behavior~
