Skip to content

Commit

Permalink
Change the trace level to information
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosifne committed Jun 24, 2021
1 parent 87735a2 commit 5c00bcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public async ValueTask<ImmutableArray<InheritanceMarginItem>> GetInheritanceMemb

var solution = project.Solution;
var serializedInheritanceMarginItems = ImmutableArray<SerializableInheritanceMarginItem>.Empty;
using (Logger.LogBlock(FunctionId.InheritanceMargin_TraverseInheritanceChain, cancellationToken))
using (Logger.LogBlock(FunctionId.InheritanceMargin_TraverseInheritanceChain, cancellationToken, LogLevel.Information))
{
serializedInheritanceMarginItems = await GetInheritanceMemberItemAsync(
solution,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ protected override async Task ProduceTagsAsync(
}

var inheritanceMemberItems = ImmutableArray<InheritanceMarginItem>.Empty;
using (Logger.LogBlock(FunctionId.InheritanceMargin_GetInheritanceMemberItems, cancellationToken))
using (Logger.LogBlock(FunctionId.InheritanceMargin_GetInheritanceMemberItems, cancellationToken, LogLevel.Information))
{
inheritanceMemberItems = await inheritanceMarginInfoService.GetInheritanceMemberItemsAsync(
document,
Expand Down

0 comments on commit 5c00bcd

Please sign in to comment.