mirror of
https://github.com/actions/runner.git
synced 2025-12-13 10:05:23 +00:00
Fix L0 tests, add/update runner release yaml. (#214)
This commit is contained in:
@@ -50,6 +50,13 @@ namespace GitHub.Runner.Common
|
||||
public void Error(Exception exception)
|
||||
{
|
||||
Trace(TraceEventType.Error, exception.ToString());
|
||||
var innerEx = exception.InnerException;
|
||||
while (innerEx != null)
|
||||
{
|
||||
Trace(TraceEventType.Error, "#####################################################");
|
||||
Trace(TraceEventType.Error, innerEx.ToString());
|
||||
innerEx = innerEx.InnerException;
|
||||
}
|
||||
}
|
||||
|
||||
// Do not remove the non-format overload.
|
||||
|
||||
Reference in New Issue
Block a user