-
Notifications
You must be signed in to change notification settings - Fork 770
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
Update AddInMemoryExporter extension method signature #1514
Update AddInMemoryExporter extension method signature #1514
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1514 +/- ##
==========================================
+ Coverage 81.36% 81.40% +0.04%
==========================================
Files 233 232 -1
Lines 6358 6357 -1
==========================================
+ Hits 5173 5175 +2
+ Misses 1185 1182 -3
|
var activityExporter = new InMemoryExporter<Activity>(activityList); | ||
|
||
var logRecordList = new List<LogRecord>(); | ||
var logExporter = new InMemoryExporter<LogRecord>(logRecordList); |
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.
we need to improve to an full usable example. Lets do it in a separate PR.
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.
LGTM.
Changes