What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Is there a way to stop Coroutines.ReactionWait() from logging?

realBlue

New Member
Joined
Jun 10, 2018
Messages
11
Reaction score
0
I have Coroutines.ReactionWait() in a while loop, while my bot is waiting for external input.

My problem:
It's hard to see essential information about why my bot isn't working when the log is filled with "[ReactionWait] Now sleeping 272 ms.". Also my log files have grown to over 37 MB per file in size.

What I tried:
I tried replacing ReactionWait with "await Task.Delay(50);" but then it gave me an error stating that waiting in external task isn't supported by coroutines.
 
I can add a flag so users can disable this type of logging. It's there because at times the bot will stop and wait for something, and people have no idea why or where it's coming from.
 
Back
Top