#How to suppress pearling logs and toll calling logs in telegram chat ?

1 messages · Page 1 of 1 (latest)

lone owl
#

I’ve constantly been noticing a huge number of pearling logs in open claw, telegram chat which is bloating up and it is getting difficult to look at the actual messages. Is there a way we can hide this

tender vaporBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

remote breachBOT
#

Yep — the Pearling... text is not really a log, it’s Telegram’s preview/progress draft label. You can quiet it down.

Quick per-chat toggles first, if you’re seeing internal/tool chatter:

/verbose off
/trace off
/reasoning off

For Telegram tool/progress lines, set this in ~/.openclaw/openclaw.json:

{
  channels: {
    telegram: {
      streaming: {
        mode: "partial",
#
        preview: {
          toolProgress: false
        }
      }
    }
  }
}

If you want Telegram to show only final answers and no preview/progress draft at all:

{
  channels: {
    telegram: {
      streaming: {