-
Notifications
You must be signed in to change notification settings - Fork 10
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
chore: reduce log level for step failed #634
Conversation
When we fail to create the notification context we can't send that notification, but that is not an error. So warning should suffice to aid in debugging. Typically this happens when some information is missing. For example, a commit that is not part of a PR will fail to build the PR_COMMENT notification context, simply because there is no PR associated with the commit.
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #634 +/- ##
==========================================
- Coverage 98.13% 98.13% -0.01%
==========================================
Files 440 440
Lines 36720 36719 -1
==========================================
- Hits 36037 36036 -1
Misses 683 683
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #634 +/- ##
=========================================
+ Coverage 0 98.13% +98.13%
=========================================
Files 0 440 +440
Lines 0 36719 +36719
=========================================
+ Hits 0 36036 +36036
- Misses 0 683 +683
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #634 +/- ##
==========================================
- Coverage 98.13% 98.13% -0.01%
==========================================
Files 440 440
Lines 36720 36719 -1
==========================================
- Hits 36037 36036 -1
Misses 683 683
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #634 +/- ##
==========================================
- Coverage 98.16% 98.16% -0.01%
==========================================
Files 475 475
Lines 37925 37924 -1
==========================================
- Hits 37228 37227 -1
Misses 697 697
Flags with carried forward coverage won't be shown. Click here to find out more.
This change has been scanned for critical changes. Learn more |
When we fail to create the notification context we can't send that
notification, but that is not an error. So warning should suffice to aid in
debugging.
Typically this happens when some information is missing.
For example, a commit that is not part of a PR will fail to build the PR_COMMENT
notification context, simply because there is no PR associated with the commit.