1 implementation of LogWarning
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLspLogger.cs (1)
18
public abstract void
LogWarning
(string message, params object[] @params);
5 references to LogWarning
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Configuration\DidChangeConfigurationNotificationHandler.cs (1)
104
_lspLogger.
LogWarning
($"Failed to parse '{valueFromClient}' to type: '{option.Type.Name}'. '{option.Name}' would not be updated.");
Handler\RequestContext.cs (1)
369
=> _logger.
LogWarning
(message);
RoslynRequestExecutionQueue.cs (1)
114
_logger.
LogWarning
($"Culture {locale} was not found, falling back to OS culture");
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\QueueItem.cs (1)
181
_logger.
LogWarning
($"Could not get request context for {MethodName}");
Workspaces\LspWorkspaceManager.cs (1)
514
_logger.
LogWarning
($"Text for {uriInWorkspace} did not match document text {firstDocument.Id} in workspace's {firstDocument.Project.Solution.WorkspaceKind} current solution");