-
Notifications
You must be signed in to change notification settings - Fork 19
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
Reduce log spamming #2354
Reduce log spamming #2354
Conversation
📝 WalkthroughWalkthroughThe pull request modifies logging behavior in the WebSocket fetcher for the XT provider. In two files ( Changes
Possibly related PRs
Suggested reviewers
Poem
Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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
CodeRabbit Configuration File (
|
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 (2)
node/pkg/websocketfetcher/providers/xt/xt.go (1)
73-73
: LGTM! Consider adding feed details to the log message.The change from Error to Warn is appropriate since this is a per-message conversion issue that doesn't affect the overall service. To aid in debugging, consider including the raw message details in the log.
- log.Warn().Str("Player", "Xt").Err(err).Msg("error in xt.handleMessage, failed to convert response to feed data") + log.Warn().Str("Player", "Xt").Err(err).Interface("raw", raw).Msg("error in xt.handleMessage, failed to convert response to feed data")node/pkg/websocketfetcher/providers/xt/utils.go (1)
16-16
: LGTM! The added context improves debuggability.The change from Error to Warn is appropriate for missing feeds, and including the raw symbol in the log message helps with debugging. Consider standardizing the player string case for consistency.
- log.Warn().Str("Player", "xt").Str("raw", response.Data.Symbol).Str("key", symbol).Msg("feed not found") + log.Warn().Str("Player", "Xt").Str("raw", response.Data.Symbol).Str("key", symbol).Msg("feed not found")
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
node/pkg/websocketfetcher/providers/xt/utils.go
(1 hunks)node/pkg/websocketfetcher/providers/xt/xt.go
(1 hunks)
Description
Please include a summary of the changes and the related issue.
Please also include relevant motivation and context.
List any dependencies that are required for this change.
Fixes # (issue)
Type of change
Please delete options that are not relevant.
Checklist before requesting a review
Deployment