Skip to content

Commit

Permalink
Merge #3062 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 Jun 3, 2020
2 parents 8dc185e + 04a54d7 commit 72cf8e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file.
- [Core] Don't try to install multiple versions of the same mod (#3051 by: HebaruSan; reviewed: DasSkelett)
- [GUI] Unbreak reinstall right click (#3055 by: HebaruSan; reviewed: DasSkelett)
- [GUI] Don't save registry when opening settings (#3058 by: DasSkelett; reviewed: HebaruSan)
- [Core] Move WebException stack trace from User error to verbose log (#3062 by: HebaruSan; reviewed: DasSkelett)

### Internal

Expand Down
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 72cf8e2

Please sign in to comment.