You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(native): Use async logger for Node.js non blocking STDOUT (#10146)
Node.js marks `STDOUT` and `STDERR` as non blocking, it leads to a problem in Rust code, because Rust doesn't handle errors (blocking error) correctly and panics. Whenever, we try to log large payload from rust code, it crashes.
New logger from `log_nonblock` crates, handle it correctly.
0 commit comments