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.
2 parents d01b2dd + 7a575c4 commit 3a3e25dCopy full SHA for 3a3e25d
src/Razor/src/Microsoft.VisualStudio.LanguageServerClient.Razor/Logging/OutputWindowLogger.cs
@@ -31,10 +31,7 @@ internal OutputWindowLogger()
31
{
32
}
33
34
- public IDisposable BeginScope<TState>(TState state)
35
- {
36
- throw new NotImplementedException();
37
- }
+ public IDisposable BeginScope<TState>(TState state) => Scope.Instance;
38
39
public bool IsEnabled(LogLevel logLevel)
40
@@ -134,4 +131,13 @@ private IVsOutputWindowPane GetPane()
134
131
return null;
135
132
136
133
+
+ private class Scope : IDisposable
+ {
137
+ public static readonly Scope Instance = new();
138
139
+ public void Dispose()
140
141
+ }
142
143
0 commit comments