# Delivering messages \[\] to client

**URL:** https://meta.discourse.org/t/delivering-messages-to-client/50028
**Category:** Development
**Created:** [2016年九月12日 19:27 UTC](https://meta.discourse.org/t/delivering-messages-to-client/50028 "2016-09-12T19:27:54Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![kgish](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/kgish/32/121131_2.png) [@kgish](https://meta.discourse.org/u/kgish)
#### Post date: [2016年九月12日 19:27 UTC](https://meta.discourse.org/t/delivering-messages-to-client/50028/1 "2016-09-12T19:27:54Z")

</div>

I’m trying to debug my plugin but the output is getting cluttered by a bunch of messages that look like this:

```plaintext
Delivering messages [] to client e4bd097558e54dcc8719aa68a4b5fc

```

Where does this come from, and how can I disable it?

---

<div class="post-metadata">

### Author: ![Nick](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nick/32/235642_2.png) [@Nick](https://meta.discourse.org/u/Nick)
#### Post date: [2016年九月12日 20:05 UTC](https://meta.discourse.org/t/delivering-messages-to-client/50028/2 "2016-09-12T20:05:12Z")

</div>

That’s debug logging from @sam’s Message Bus gem.  
[https://github.com/SamSaffron/message\_bus](https://github.com/SamSaffron/message_bus)

You can disable it by changing your env to not debug, but considering you are doing dev work you probably don’t want to do that. You can also maybe make some token in your own log messages to filter your own messages by. There’s a way to namespace logs in Rails logger I think - but you can also just grep or use the search function in `/logs`
