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.
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.