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 33a7fef commit 27b3650Copy full SHA for 27b3650
test/Docfx.Tests.Common/TestListenerScope.cs
@@ -7,7 +7,7 @@ namespace Docfx.Tests.Common;
7
8
public class TestListenerScope : ILoggerListener, IDisposable
9
{
10
- private readonly static AsyncLocal<List<ILogItem>> s_items = new();
+ private static readonly AsyncLocal<List<ILogItem>> s_items = new();
11
private readonly LogLevel _logLevel;
12
13
public List<ILogItem> Items => s_items.Value;
0 commit comments