mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 18:17:13 +00:00
DownloadString exceptions are no longer reported.
This commit is contained in:
parent
057e248f8f
commit
7e5445fa3a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public virtual string DownloadString(string address, ICredentials identity)
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
logger.TraceException(ex.Message, ex);
|
logger.Trace(ex.Message, ex.ToString());
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue