Don't swallow stack trace

This commit is contained in:
Paul Pacheco 2019-07-03 07:38:46 -05:00
parent 97432169ea
commit 454c6ade47

View File

@ -577,7 +577,7 @@ static bool Weave(string assName, IEnumerable<string> dependencies, string unity
}
catch (Exception ex)
{
Weaver.Error(ex.Message);
Weaver.Error(ex.ToString());
throw ex;
}
}