Skip to content

Commit 1ec4bed

Browse files
updates
1 parent 11c15b5 commit 1ec4bed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/coverlet.core/Coverage.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ public void PrepareModules()
6363
string[] modules = InstrumentationHelper.GetCoverableModules(_module, _includeDirectories);
6464
string[] excludes = InstrumentationHelper.GetExcludedFiles(_excludedSourceFiles);
6565

66-
Array.ForEach(_excludeFilters ?? Array.Empty<string>(), filter => _logger.LogInformation($"Exclude filter '{filter}'"));
67-
Array.ForEach(_includeFilters ?? Array.Empty<string>(), filter => _logger.LogInformation($"Include filter '{filter}'"));
66+
Array.ForEach(_excludeFilters ?? Array.Empty<string>(), filter => _logger.LogInformation($"Excluded module filter '{filter}'"));
67+
Array.ForEach(_includeFilters ?? Array.Empty<string>(), filter => _logger.LogInformation($"Included module filter '{filter}'"));
68+
Array.ForEach(excludes ?? Array.Empty<string>(), filter => _logger.LogInformation($"Excluded source files '{filter}'"));
6869

6970
_excludeFilters = _excludeFilters?.Where(f => InstrumentationHelper.IsValidFilterExpression(f)).ToArray();
7071
_includeFilters = _includeFilters?.Where(f => InstrumentationHelper.IsValidFilterExpression(f)).ToArray();

0 commit comments

Comments
 (0)