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