-
Notifications
You must be signed in to change notification settings - Fork 199
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
bal 2043 winston log error fix only #2379
Conversation
|
Warning Rate Limit Exceeded@liorzam has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 14 minutes and 14 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. WalkthroughThe recent update enhances error logging capabilities across the Workflow Service by expanding the Changes
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 as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
PR Description updated to latest commit (d7b12be) |
PR Review 🔍
Code feedback:
|
PR Code Suggestions ✨
|
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
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- services/workflows-service/prisma/data-migrations (1 hunks)
- services/workflows-service/src/common/abstract-logger/abstract-logger.ts (1 hunks)
- services/workflows-service/src/common/app-logger/app-logger.service.ts (1 hunks)
- services/workflows-service/src/common/utils/winston-logger/winston-logger.ts (1 hunks)
- services/workflows-service/src/sentry/sentry.service.ts (1 hunks)
Files skipped from review due to trivial changes (1)
- services/workflows-service/prisma/data-migrations
Additional comments not posted (4)
services/workflows-service/src/common/abstract-logger/abstract-logger.ts (1)
10-10
: Update theerror
method to acceptunknown
type.This change enhances the flexibility of the
error
method by allowing it to accept any type of error, which can be useful for handling various error scenarios.services/workflows-service/src/common/app-logger/app-logger.service.ts (1)
28-35
: Update theerror
method to acceptunknown
type and add stack information for string errors.This change enhances the flexibility of the
error
method and ensures that stack information is included for string errors, which can be useful for debugging.services/workflows-service/src/sentry/sentry.service.ts (1)
24-25
: Add error information to the scope when capturing HTTP exceptions.This change ensures that the error information is included in the Sentry scope, which can be useful for debugging and tracking errors.
services/workflows-service/src/common/utils/winston-logger/winston-logger.ts (1)
63-68
: Update theerror
method to accept an additionalpayload
parameter and handle various error types.This change enhances the flexibility of the
error
method by allowing it to accept additional payload data and handle various error types appropriately.
services/workflows-service/src/common/abstract-logger/abstract-logger.ts
Outdated
Show resolved
Hide resolved
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
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- services/workflows-service/src/common/abstract-logger/abstract-logger.ts (1 hunks)
Files skipped from review as they are similar to previous changes (1)
- services/workflows-service/src/common/abstract-logger/abstract-logger.ts
PR Type
Bug fix
PR Type
enhancement, bug_fix
Previous:
Current:
___Description
Enhanced error handling across various logging services to include more types and detailed information.
Updated Sentry service to capture additional error details.
Enhancements
Summary by CodeRabbit
New Features
Bug Fixes
Refactor