aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/ApiEntryPoint.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
-rw-r--r--MediaBrowser.Api/ApiEntryPoint.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs
index bc0241766..37ab12366 100644
--- a/MediaBrowser.Api/ApiEntryPoint.cs
+++ b/MediaBrowser.Api/ApiEntryPoint.cs
@@ -128,7 +128,11 @@ namespace MediaBrowser.Api
{
// Don't clutter the log
}
- catch (IOException ex)
+ catch (IOException)
+ {
+ // Don't clutter the log
+ }
+ catch (Exception ex)
{
Logger.ErrorException("Error deleting encoded media cache", ex);
}