From 77f0047c7d67070122d34023bf145fc21836cda0 Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Fri, 1 May 2026 17:47:55 +1000 Subject: [PATCH] write NUnit logs to stderr, hoping to capture them more consistently --- Tests/DistTestCore/DistTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/DistTestCore/DistTest.cs b/Tests/DistTestCore/DistTest.cs index 34773cf4..d5687f6e 100644 --- a/Tests/DistTestCore/DistTest.cs +++ b/Tests/DistTestCore/DistTest.cs @@ -97,7 +97,7 @@ namespace DistTestCore ["success"] = result.Success, ["duration"] = lifecycle.GetTestDuration().ToString(@"hh\:mm\:ss"), }; - using var raw = new StreamWriter(Console.OpenStandardOutput(), leaveOpen: true) { AutoFlush = true }; + using var raw = new StreamWriter(Console.OpenStandardError(), leaveOpen: true) { AutoFlush = true }; raw.WriteLine(Newtonsoft.Json.JsonConvert.SerializeObject(entry)); } catch (Exception ex)