17 references to LogMessageSeverity
Microsoft.CodeAnalysis.Features (17)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
815log.Write($"Invalid active statement span: {oldStatementSpan}", LogMessageSeverity.Warning); 868log.Write($"Invalid active statement span: {oldStatementSpan}", LogMessageSeverity.Warning);
EditAndContinue\CommittedSolution.cs (7)
418log.Write($"Source file of project '{projectName}' doesn't match output PDB: PDB '{compilationOutputs.PdbDisplayPath}' (assembly: '{compilationOutputs.AssemblyDisplayPath}') not found", LogMessageSeverity.Warning); 425log.Write($"Source file of project '{projectName}' doesn't match output PDB: error opening PDB '{compilationOutputs.PdbDisplayPath}' (assembly: '{compilationOutputs.AssemblyDisplayPath}'): {e.Message}", LogMessageSeverity.Warning); 463log.Write($"Checksum differs for source file '{sourceFilePath}'", LogMessageSeverity.Warning); 470log.Write($"Error calculating checksum for source file '{sourceFilePath}': '{e.Message}'", LogMessageSeverity.Error); 515log.Write($"Source '{sourceFilePath}' doesn't match output PDB: no document", LogMessageSeverity.Warning); 523log.Write($"Source '{sourceFilePath}' doesn't match PDB: unknown checksum alg", LogMessageSeverity.Warning); 530log.Write($"Source '{sourceFilePath}' doesn't match output PDB: error reading symbols: {e.Message}", LogMessageSeverity.Error);
EditAndContinue\DebuggingSession.cs (1)
396SessionLog.Write($"Failed to create baseline for '{projectId.DebugName}': {e.Message}", LogMessageSeverity.Error);
EditAndContinue\EditSession.cs (4)
481DiagnosticSeverity.Warning => LogMessageSeverity.Warning, 482DiagnosticSeverity.Error => LogMessageSeverity.Error, 483_ => LogMessageSeverity.Info 1156Log.Write($"Exception while emitting update: {e}", LogMessageSeverity.Error);
EditAndContinue\IEditAndContinueLogReporter.cs (1)
12void Report(string message, LogMessageSeverity severity);
EditAndContinue\SolutionUpdate.cs (2)
58log.Write($"Project {projectDiagnostics.ProjectId.DebugName} update error: {diagnostic}", LogMessageSeverity.Error); 67log.Write($"Document {documentWithRudeEdits.DocumentId.DebugName} rude edit: {rudeEdit.Kind} {rudeEdit.SyntaxKind}", LogMessageSeverity.Error);