Skip to content

Commit 1c7e44c

Browse files
committed
C#: Print PID.
1 parent c43b03b commit 1c7e44c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/extractor/Semmle.Util/ProcessStartInfoExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static int ReadOutput(this ProcessStartInfo pi, out IList<string> stdout,
2727
return;
2828
}
2929

30-
onOut?.Invoke(e.Data);
30+
onOut?.Invoke($"[PID: {process.Id}] {e.Data}");
3131
@out.Add(e.Data);
3232
});
3333
}

0 commit comments

Comments
 (0)