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 82c1d95 commit a378608Copy full SHA for a378608
src/Xamarin.Android.Build.Tasks/Tasks/GetAdditionalResourcesFromAssemblies.cs
@@ -428,8 +428,10 @@ public override bool Execute ()
428
}
429
430
}, Token).ContinueWith ((t) => {
431
- if (t.Exception != null)
432
- Log.LogErrorFromException (t.Exception.GetBaseException ());
+ if (t.Exception != null) {
+ var ex = t.Exception.GetBaseException ();
433
+ LogError (ex.Message + Environment.NewLine + ex.StackTrace);
434
+ }
435
Complete ();
436
}).ConfigureAwait (false);
437
0 commit comments