We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b49eb commit ebf1066Copy full SHA for ebf1066
1 file changed
plugins/csharp/parser/src_csharp/Program.cs
@@ -614,12 +614,14 @@ private static async Task ProcessSingleDocument(
614
visitor.Visit(root);
615
616
string status = visitor.FullyParsed ? "+" : "-";
617
- Console.WriteLine($"{status} [{projectName}] {document.FilePath}");
+ Console.WriteLine($"[{projectName}] {document.FilePath}");
618
+ Console.WriteLine($"{status}{document.FilePath}");
619
}
620
catch (Exception ex)
621
{
622
Console.Error.WriteLine($"Error parsing {document.FilePath}: {ex.Message}");
- Console.WriteLine($"- [{projectName}] {document.FilePath}");
623
624
+ Console.WriteLine($"-{document.FilePath}");
625
626
627
0 commit comments