Skip to content

Commit ebf1066

Browse files
committed
Fix issues
1 parent e5b49eb commit ebf1066

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

plugins/csharp/parser/src_csharp/Program.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,12 +614,14 @@ private static async Task ProcessSingleDocument(
614614
visitor.Visit(root);
615615

616616
string status = visitor.FullyParsed ? "+" : "-";
617-
Console.WriteLine($"{status} [{projectName}] {document.FilePath}");
617+
Console.WriteLine($"[{projectName}] {document.FilePath}");
618+
Console.WriteLine($"{status}{document.FilePath}");
618619
}
619620
catch (Exception ex)
620621
{
621622
Console.Error.WriteLine($"Error parsing {document.FilePath}: {ex.Message}");
622-
Console.WriteLine($"- [{projectName}] {document.FilePath}");
623+
Console.WriteLine($"[{projectName}] {document.FilePath}");
624+
Console.WriteLine($"-{document.FilePath}");
623625
}
624626
}
625627
}

0 commit comments

Comments
 (0)