19 references to Log
Microsoft.DotNet.PackageTesting (19)
GetCompatiblePackageTargetFrameworks.cs (2)
53Log.LogErrorFromException(e, showStackTrace: false); 56return !Log.HasLoggedErrors;
VerifyClosure.cs (11)
49Log.LogError("No sources to scan."); 71return !Log.HasLoggedErrors; 112Log.LogError($"Duplicate entries for {assemblyInfo.Name} : {assemblyInfo.Path} & {existingInfo.Path}"); 117Log.LogMessage($"Duplicate entries for {assemblyInfo.Name}, but different filenames : preferring {existingInfo.Path} over {assemblyInfo.Path}."); 190Log.LogError($"Assembly '{assm.Name}' is missing module dependency '{moduleReference}'"); 212Log.LogError($"Assembly '{assm.Name}' is missing dependency '{dep.Name}'"); 216Log.LogError($"Assembly '{assm.Name}' has insufficient version for dependency '{dep.Name}' : {depAssm.Version} < {dep.Version}."); 247Log.LogMessage(LogImportance.Low, $"Checked {assm.Path}"); 266Log.LogError($"Cycle detected for {assembly.Path}."); 270Log.LogError(PrintCycle(suspectCycle.Value)); 305Log.LogMessage($"Cycle detected for {depAssm.Path} : {PrintCycle(cycle)}.");
VerifyTypes.cs (6)
40Log.LogError("No sources to scan."); 59Log.LogMessage($"Ignored duplicate type {type} in both {existingAssembly.Path} and {assembly.Path}."); 63Log.LogError($"Duplicate type {type} in both {existingAssembly.Path} and {assembly.Path}."); 73return !Log.HasLoggedErrors; 110Log.LogError($"Duplicate entries for {assemblyInfo.Name} : {assemblyInfo.Path} & {existingInfo.Path}"); 115Log.LogMessage($"Duplicate entries for {assemblyInfo.Name}, but different filenames : preferring {existingInfo.Path} over {assemblyInfo.Path}.");