Skip to content

Commit 3f11164

Browse files
committed
added information log
1 parent 850f563 commit 3f11164

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/coverlet.core/Instrumentation/Instrumenter.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,8 @@ private void InstrumentType(TypeDefinition type)
510510

511511
private void InstrumentMethod(MethodDefinition method)
512512
{
513+
_logger.LogInformation($"Instrumenting method '{method.FullName}' in module '{_module}'.");
514+
513515
var sourceFile = method.DebugInformation.SequencePoints.Select(s => _sourceRootTranslator.ResolveFilePath(s.Document.Url)).FirstOrDefault();
514516

515517
if (string.IsNullOrEmpty(sourceFile)) return;

0 commit comments

Comments
 (0)