Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
[request id]
context to relevant proxy log entries (#3975)
Most `[proxy]` log entries are prefixed with `[request ID]`. The exception are are entries that are emitted in-between requests. Before: ``` [proxy] Starting RPC server [proxy] Processing request 0 [proxy] Starting execute request [request 0][booster][execute][depth] 0 steps. ... [proxy] Booster Aborted at Depth {getNat = 0} [proxy] Simplifying booster state and falling back to Kore [proxy] Simplifying execution state ... ``` After: ``` [proxy] Starting RPC server [proxy] Processing request 0 [request 0][proxy] Starting execute request [request 0][booster][execute][depth] 0 steps. ... [request 0][proxy] Booster Aborted at Depth {getNat = 0} [request 0][proxy] Simplifying booster state and falling back to Kore [request 0][proxy] Simplifying execution state ... ```
- Loading branch information