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);
13 references to LogDebug
Microsoft.CodeAnalysis.LanguageServer.Protocol (11)
Handler\InlineCompletions\XmlSnippetParser.cs (1)
50logger.LogDebug($"Reading snippet for {matchingSnippetInfo.Title} with path {matchingSnippetInfo.Path}");
Handler\RequestContext.cs (1)
337=> 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 (4)
166_logger.LogDebug("Starting request handler"); 221_logger.LogDebug("Request handler completed successfully."); 227_logger.LogDebug($"Request was cancelled."); 242_logger.LogDebug(ex.ToString());
Workspaces\LspWorkspaceManager.cs (2)
288_logger.LogDebug($"{document.FilePath} found in workspace {workspaceKind}; project {document.Project.Name}"); 297_logger.LogDebug($"Could not find '{textDocumentIdentifier.DocumentUri}'. Searched {searchedWorkspaceKinds}");
Microsoft.CommonLanguageServerProtocol.Framework.UnitTests (2)
QueueItemTests.cs (2)
21.Setup(l => l.LogDebug("Starting request handler", Array.Empty<object>())) 24.Setup(l => l.LogDebug(