From 1c7e44c04277869b0f7b8c8a85845dfd3114d19f Mon Sep 17 00:00:00 2001 From: Michael Nebel Date: Fri, 28 Nov 2025 13:35:02 +0100 Subject: [PATCH] C#: Print PID. --- csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs b/csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs index e4468cc9c402..fb900c79f9d9 100644 --- a/csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs +++ b/csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs @@ -27,7 +27,7 @@ public static int ReadOutput(this ProcessStartInfo pi, out IList stdout, return; } - onOut?.Invoke(e.Data); + onOut?.Invoke($"[PID: {process.Id}] {e.Data}"); @out.Add(e.Data); }); }