diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-09-08 17:49:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-08 17:49:55 +0100 |
| commit | a9d8b53658930d062c1f2ddc34715c51aec08ce1 (patch) | |
| tree | 0a023221c181bb12bbf3e0efb0cbebbef6c6c0ad | |
| parent | 2eff0db804dcc46849ad536ad14c3f5faa0695be (diff) | |
Update Emby.Server.Implementations/ApplicationHost.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 814471803..a6b6505bf 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -1083,9 +1083,9 @@ namespace Emby.Server.Implementations Logger.LogDebug("Deleting {Path}", versions[x].Path); Directory.Delete(versions[x].Path, true); } - catch + catch (Exception e) { - // Ignore errors. + Logger.LogWarning(e, "Unable to delete {Path}", versions[x].Path); } } } |
