-
Notifications
You must be signed in to change notification settings - Fork 689
refactor: Log subprocess stderr as WARN (#1563) #1574
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@CodeRabbit full review |
✅ Actions performedFull review triggered. |
WalkthroughThe logging level for messages read from a subprocess's standard error stream in Changes
Possibly related PRs
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
launch/dynamo-run/src/subprocess.rs (1)
101-105: Stderr blanket-downgraded to WARN – consider content-based escalationChanging every stderr line to
tracing::warn!removes the false-positive noise, but it will also demote real stack traces and fatal errors to WARN, making them easy to miss in production dashboards / alerting pipelines.A low-impact middle ground is to route lines that obviously contain error markers (
ERROR,Traceback, etc.) back toerror!, leaving the rest atwarn!:- tracing::warn!("{}", strip_log_prefix(&line)); + if line.contains("ERROR") + || line.contains("Error") + || line.contains("Traceback") + { + tracing::error!("{}", strip_log_prefix(&line)); + } else { + tracing::warn!("{}", strip_log_prefix(&line)); + }This keeps the current noise reduction while preserving critical visibility for genuine failures.
Feel free to adjust the heuristics or gate them behind a feature flag if you’re concerned about performance or false matches.
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
launch/dynamo-run/src/subprocess.rs(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: Build and Test - vllm
- GitHub Check: pre-merge-rust (.)
Overview:
Cherry-pick #1563 into release 0.3.1
Summary by CodeRabbit