11 implementations of Log
Microsoft.AspNetCore.Razor.Test.Common.Tooling (1)
Logging\TestOutputLogger.cs (1)
19public void Log(LogLevel logLevel, string message, Exception? exception)
Microsoft.CodeAnalysis.Razor.Workspaces (3)
Logging\AbstractLoggerFactory.AggregateLogger.cs (1)
49public void Log(LogLevel logLevel, string message, Exception? exception)
Logging\AbstractMemoryLoggerProvider.Logger.cs (1)
18public void Log(LogLevel logLevel, string message, Exception? exception)
Logging\EmptyLoggerFactory.cs (1)
36public void Log(LogLevel logLevel, string message, Exception? exception)
Microsoft.CodeAnalysis.Remote.Razor (2)
Logging\TraceSourceLoggerFactory.Logger.cs (1)
16public void Log(LogLevel logLevel, string message, Exception? exception)
ThrowingErrorLoggerProvider.cs (1)
28public void Log(LogLevel logLevel, string message, Exception? exception)
Microsoft.VisualStudio.LanguageServices.Razor (3)
LanguageClient\Logging\RazorLogHubLogger.cs (1)
21public void Log(LogLevel logLevel, string message, Exception? exception)
Logging\ActivityLogLoggerProvider.Logger.cs (1)
20public void Log(LogLevel logLevel, string message, Exception? exception)
Logging\OutputWindowLoggerProvider.cs (1)
57public void Log(LogLevel logLevel, string message, Exception? exception)
Microsoft.VisualStudio.Razor.IntegrationTests (1)
Logging\IntegrationTestOutputLogger.cs (1)
19public void Log(LogLevel logLevel, string message, Exception? exception)
Microsoft.VisualStudioCode.RazorExtension (1)
Services\LspLogger.cs (1)
24public void Log(LogLevel logLevel, string message, Exception? exception)
19 references to Log
Microsoft.CodeAnalysis.Razor.Workspaces (17)
Logging\AbstractLoggerFactory.AggregateLogger.cs (1)
55lazyLogger.Instance.Log(logLevel, message, exception);
Logging\ILoggerExtensions.cs (16)
15logger.Log(logLevel, message.ToString(), exception: null); 23logger.Log(logLevel, message, exception: null); 31logger.Log(LogLevel.Trace, message.ToString(), exception: null); 47logger.Log(LogLevel.Debug, message.ToString(), exception: null); 63logger.Log(LogLevel.Information, message.ToString(), exception: null); 79logger.Log(LogLevel.Warning, message.ToString(), exception: null); 87logger.Log(LogLevel.Warning, message.ToString(), exception); 95logger.Log(LogLevel.Warning, message, exception); 111logger.Log(LogLevel.Error, exception.Message, exception); 119logger.Log(LogLevel.Error, message.ToString(), exception); 127logger.Log(LogLevel.Error, message.ToString(), exception: null); 135logger.Log(LogLevel.Error, message, exception); 151logger.Log(LogLevel.Critical, exception.Message, exception); 159logger.Log(LogLevel.Critical, message.ToString(), exception: null); 167logger.Log(LogLevel.Critical, message.ToString(), exception); 175logger.Log(LogLevel.Critical, message, exception);
Microsoft.VisualStudio.LanguageServices.Razor (2)
Telemetry\VSTelemetryReporter.cs (2)
58=> _logger.Log(LogLevel.Trace, message, exception: null); 61=> _logger.Log(LogLevel.Error, message, exception);