-
Notifications
You must be signed in to change notification settings - Fork 104
Moved loggers from instance variables back to usage from context #3930
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
| newHash, err := w.hashFile(w.filePath) | ||
| if err != nil { | ||
| w.logger.Error(fmt.Errorf("failed to hash file during modification check: %w", err).Error()) | ||
| logger.Error(fmt.Errorf("failed to hash file during modification check: %w", err), "") |
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.
equivalent, but I don't love it.
|
/test integration |
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, geoberle The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/test e2e-parallel |
|
/hold Revision 351b1f8 was retested 3 times: holding |
|
/test e2e-parallel |
|
/hold cancel |
|
all failures were provisioning failures. |
The context holds more pertinent data. Also aligns with logr for frontend/backend
/assign @miguelsorianod @geoberle