You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
context.Global.JobTelemetry.Add(newJobTelemetry(){Type=JobTelemetryType.General,Message=$".NET 8 OS compatibility test failed with exit code '{exitCode}' and output: {GetShortOutput(output)}"});
90
+
context.Global.JobTelemetry.Add(newJobTelemetry(){Type=JobTelemetryType.General,Message=$".NET 8 OS compatibility test failed with exit code '{exitCode}' and output: {GetShortOutput(context,output)}"});
78
91
}
79
92
}
80
93
}
@@ -83,14 +96,15 @@ public async Task CheckOSAsync(IExecutionContext context)
83
96
{
84
97
Trace.Error("An error occurred while testing .NET 8 compatibility'");
85
98
Trace.Error(ex);
86
-
context.Global.JobTelemetry.Add(newJobTelemetry(){Type=JobTelemetryType.General,Message=$".NET 8 OS compatibility test encountered exception type '{ex.GetType().FullName}', message: '{ex.Message}', process output: '{GetShortOutput(output)}'"});
99
+
context.Global.JobTelemetry.Add(newJobTelemetry(){Type=JobTelemetryType.General,Message=$".NET 8 OS compatibility test encountered exception type '{ex.GetType().FullName}', message: '{ex.Message}', process output: '{GetShortOutput(context,output)}'"});
0 commit comments