-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix call depth of standard logger in go1.12 #706
Conversation
Go1.11 includes a caller for the auto-generated wrapper within the standard library logger, which is no longer included in Go1.12. See #682 (comment) for more details. Fixes #682.
Codecov Report
@@ Coverage Diff @@
## master #706 +/- ##
=======================================
Coverage 97.43% 97.43%
=======================================
Files 40 40
Lines 2109 2109
=======================================
Hits 2055 2055
Misses 46 46
Partials 8 8
Continue to review full report at Codecov.
|
Is a clean test for this possible? |
We already have a test that fails for 1.12, but Travis isn't running tests on 1.12 yet. #707 is stacked on top which adds testing for 1.12. |
* master: README: Switch to travis-ci.com for badge (uber-go#709) Fix changelog links for 675 Prep for 1.10.0 release, update CHANGELOG (uber-go#705) Add Go 1.12 for Travis (uber-go#707) Fix call depth of standard logger in go1.12 (uber-go#706) Fix inconsistency between MapObjectEncoder's AddByteString and AppendByteString (uber-go#657) Disable HTMLEscape in reflect JSON encoder (uber-go#704)
Go1.11 includes a caller for the auto-generated wrapper within the standard library logger, which is no longer included in Go1.12. See uber-go#682 (comment) for more details. Fixes uber-go#682.
Go1.11 includes a caller for the auto-generated wrapper within the
standard library logger, which is no longer included in Go1.12.
See #682 (comment) for
more details.
Fixes #682.