1 implementation of LogDebug
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLspLogger.cs (1)
17public abstract void LogDebug(string message, params object[] @params);
10 references to LogDebug
Microsoft.CodeAnalysis.LanguageServer.Protocol (10)
Handler\InlineCompletions\XmlSnippetParser.cs (1)
50logger.LogDebug($"Reading snippet for {matchingSnippetInfo.Title} with path {matchingSnippetInfo.Path}");
Handler\RequestContext.cs (1)
365=> _logger.LogDebug(message);
RoslynLanguageServer.cs (2)
170Logger.LogDebug("No request parameters given, using default language handler"); 215Logger.LogDebug("Request did not contain a textDocument, using default language handler");
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\AbstractLanguageServer.cs (1)
187Logger.LogDebug($"Using default language handler for {methodName}");
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\QueueItem.cs (3)
165_logger.LogDebug("Starting request handler"); 220_logger.LogDebug("Request handler completed successfully."); 226_logger.LogDebug($"Request was cancelled.");
Workspaces\LspWorkspaceManager.cs (2)
261_logger.LogDebug($"{document.FilePath} found in workspace {workspaceKind}"); 288_logger.LogDebug($"Could not find '{textDocumentIdentifier.DocumentUri}'. Searched {searchedWorkspaceKinds}");