-
Notifications
You must be signed in to change notification settings - Fork 214
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
[Merged by Bors] - Remove obsolete log package functions #6252
Conversation
bors try |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #6252 +/- ##
=========================================
- Coverage 82.1% 82.0% -0.1%
=========================================
Files 308 308
Lines 34121 34087 -34
=========================================
- Hits 28019 27983 -36
- Misses 4330 4335 +5
+ Partials 1772 1769 -3 ☔ View full report in Codecov by Sentry. |
tryBuild failed: |
af47638
to
36a7005
Compare
bors try |
tryBuild failed: |
bors merge |
## Motivation This is another step in the gradual removal of the `log` package from the node. Many now unused functions were removed.
Build failed: |
bors merge |
## Motivation This is another step in the gradual removal of the `log` package from the node. Many now unused functions were removed.
Pull request successfully merged into develop. Build succeeded:
|
## Motivation Follow up to this discussion: #6252 (comment) Removal of the global logger from (most of) the event package.
## Motivation Follow up to this discussion: #6252 (comment) Removal of the global logger from (most of) the event package.
Motivation
This is another step in the gradual removal of the
log
package from the node. Many now unused functions were removed.Description
Removed functionality from the
log
package that isn't used any more and refactored code a bit to not use globals any more (e.g.log.Json(true)
). The global logger isn't fully removed yet, since it is still used in some places.Test Plan
TODO