18 references to LogMessageSeverity
Microsoft.CodeAnalysis.Features (18)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
867
log.Write($"Invalid active statement span: {oldStatementSpan}",
LogMessageSeverity
.Warning);
928
log.Write($"Invalid active statement span: {oldStatementSpan}",
LogMessageSeverity
.Warning);
EditAndContinue\CommittedSolution.cs (7)
448
log.Write($"Source file of project '{projectName}' doesn't match output PDB: PDB '{compilationOutputs.PdbDisplayPath}' (assembly: '{compilationOutputs.AssemblyDisplayPath}') not found",
LogMessageSeverity
.Warning);
455
log.Write($"Source file of project '{projectName}' doesn't match output PDB: error opening PDB '{compilationOutputs.PdbDisplayPath}' (assembly: '{compilationOutputs.AssemblyDisplayPath}'): {e.Message}",
LogMessageSeverity
.Warning);
498
log.Write($"Checksum differs for source file '{sourceFilePath}'",
LogMessageSeverity
.Warning);
505
log.Write($"Error calculating checksum for source file '{sourceFilePath}': '{e.Message}'",
LogMessageSeverity
.Error);
550
log.Write($"Source '{sourceFilePath}' doesn't match output PDB: no document",
LogMessageSeverity
.Warning);
558
log.Write($"Source '{sourceFilePath}' doesn't match PDB: unknown checksum alg",
LogMessageSeverity
.Warning);
565
log.Write($"Source '{sourceFilePath}' doesn't match output PDB: error reading symbols: {e.Message}",
LogMessageSeverity
.Error);
EditAndContinue\DebuggingSession.cs (1)
411
SessionLog.Write($"Failed to create baseline for '{projectId.DebugName}': {e.Message}",
LogMessageSeverity
.Error);
EditAndContinue\EditSession.cs (2)
496
log.Write($"Source generator failed: {generatorDiagnostic}",
LogMessageSeverity
.Info);
1267
Log.Write($"Exception while emitting update: {e}",
LogMessageSeverity
.Error);
EditAndContinue\IEditAndContinueLogReporter.cs (1)
12
void Report(string message,
LogMessageSeverity
severity);
EditAndContinue\SolutionUpdate.cs (3)
65
DiagnosticSeverity.Warning =>
LogMessageSeverity
.Warning,
66
DiagnosticSeverity.Error =>
LogMessageSeverity
.Error,
67
_ =>
LogMessageSeverity
.Info
EditAndContinue\TraceLog.cs (2)
160
public void Write(string message,
LogMessageSeverity
severity =
LogMessageSeverity
.Info)