Is there a way to disable console logging all the socket event from happening?

I am running a strategy against the replay socket and it get flooded with these message:

  "e": "chart",
  "d": {
    "charts": [
      {
        "id": 2,
        "s": "",
        "td": 20220520,
        "bars": [
          {
            "timestamp": "2022-05-20T14:01Z",
            ....
          }
        ]
      }
    ]
  }
}
{
  "e": "md",
  "d": {
    "quotes": [
      ...
    ]
  }
}

Is there a way for me to disable this log? I am following the example autotrade setup.

I’m guessing they may be the console.log()s coming off the TdEvents in
“strategies/yourCustomStrategy/yourCustomStrategy.js”. If you’re running that.

I checked that folder and the console.log definitely didn’t come from there. It is strange too that if I comment out all the effects, this will never log so it gotta be in one of those, but I cannot see where exactly it does this.