File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/coverlet.core/Instrumentation Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ Coverlet works thanks to ModuleTracker that is injected during instrumentation f
207
207
This piece of code run as a part of tests and doesn't have any connection with coverlet.
208
208
We can collect logs from trackers throught an enviroment variable
209
209
```
210
- set COVERLET_ENABLETRAKERLOG =1
210
+ set COVERLET_ENABLETRACKERLOG =1
211
211
```
212
212
When enabled tracking event will be collected in log file near to module location.
213
213
File name will be something ` moduleName.dll_tracker.txt `
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public static class ModuleTrackerTemplate
20
20
public static string HitsFilePath ;
21
21
public static int [ ] HitsArray ;
22
22
public static bool SingleHit ;
23
- private static bool _enableLog = int . TryParse ( Environment . GetEnvironmentVariable ( "COVERLET_ENABLETRAKERLOG " ) , out int result ) ? result == 1 : false ;
23
+ private static bool _enableLog = int . TryParse ( Environment . GetEnvironmentVariable ( "COVERLET_ENABLETRACKERLOG " ) , out int result ) ? result == 1 : false ;
24
24
25
25
static ModuleTrackerTemplate ( )
26
26
{
You can’t perform that action at this time.
0 commit comments