We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 850f563 commit 3f11164Copy full SHA for 3f11164
src/coverlet.core/Instrumentation/Instrumenter.cs
@@ -510,6 +510,8 @@ private void InstrumentType(TypeDefinition type)
510
511
private void InstrumentMethod(MethodDefinition method)
512
{
513
+ _logger.LogInformation($"Instrumenting method '{method.FullName}' in module '{_module}'.");
514
+
515
var sourceFile = method.DebugInformation.SequencePoints.Select(s => _sourceRootTranslator.ResolveFilePath(s.Document.Url)).FirstOrDefault();
516
517
if (string.IsNullOrEmpty(sourceFile)) return;
0 commit comments