-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Replaced the deprecated logging exporter to debug exporter #5291
Replaced the deprecated logging exporter to debug exporter #5291
Conversation
Signed-off-by: Marcell Majer <majer.marcell@telekom.hu>
4381dbe
to
d3385fe
Compare
@@ -13,7 +13,7 @@ import ( | |||
"go.opentelemetry.io/collector/connector" | |||
"go.opentelemetry.io/collector/connector/forwardconnector" | |||
"go.opentelemetry.io/collector/exporter" | |||
"go.opentelemetry.io/collector/exporter/loggingexporter" |
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.
It is a breaking change but acceptable as the v2 hasn't been released.
Signed-off-by: Marcell Majer <majer.marcell@telekom.hu>
3f8b999
to
4b7c9b6
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5291 +/- ##
=======================================
Coverage 95.06% 95.06%
=======================================
Files 340 340
Lines 16610 16610
=======================================
Hits 15791 15791
Misses 630 630
Partials 189 189
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Marcell Majer <majer.marcell@telekom.hu>
Signed-off-by: Marcell Majer <majer.marcell@telekom.hu>
Hi, it's my first very basic PR.
I removed
loggingexporter
since it's deprecated and replaced it with thedebugexporter
.