Skip to content

Commit

Permalink
Move WebException stack trace from User error to verbose log
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed May 28, 2020
1 parent 5b08975 commit 04a54d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Net/NetAsyncModulesDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private void ModuleDownloadComplete(Uri url, string filename, Exception error)
{
if (error != null)
{
User.RaiseError(error.ToString());
log.Info(error.ToString());
}
else
{
Expand Down

0 comments on commit 04a54d7

Please sign in to comment.