diff --git a/CHANGELOG.md b/CHANGELOG.md index a730299da5..a271f02f47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Core/Net/NetAsyncModulesDownloader.cs b/Core/Net/NetAsyncModulesDownloader.cs index 7715378e62..6c9845cfd3 100644 --- a/Core/Net/NetAsyncModulesDownloader.cs +++ b/Core/Net/NetAsyncModulesDownloader.cs @@ -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 {