Commit 1caf543
committed
Fix Bug #7: Remove logger call from message processing loop
Removed await logger?.debug() at line 207 in the for-await message loop.
This was causing delays when processing every incoming message, including
tool call responses.
Line 207 was in the hot path - executed for EVERY message received.1 parent 7a6ddf9 commit 1caf543
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
203 | 203 | | |
204 | 204 | | |
205 | 205 | | |
206 | | - | |
207 | | - | |
| 206 | + | |
| 207 | + | |
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
| |||
0 commit comments