We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c43b03b commit 1c7e44cCopy full SHA for 1c7e44c
csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs
@@ -27,7 +27,7 @@ public static int ReadOutput(this ProcessStartInfo pi, out IList<string> stdout,
27
return;
28
}
29
30
- onOut?.Invoke(e.Data);
+ onOut?.Invoke($"[PID: {process.Id}] {e.Data}");
31
@out.Add(e.Data);
32
});
33
0 commit comments