aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-09-08 17:49:38 +0100
committerGitHub <noreply@github.com>2020-09-08 17:49:38 +0100
commit2eff0db804dcc46849ad536ad14c3f5faa0695be (patch)
tree4ebc497b754e82692eba675d89b615a99f0c6e85 /Emby.Server.Implementations/ApplicationHost.cs
parent0f6ea123ea1ead19e6efc915e6af62dc4a198329 (diff)
Update Emby.Server.Implementations/ApplicationHost.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 52c40f4a5..814471803 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -1080,7 +1080,7 @@ namespace Emby.Server.Implementations
// Attempt a cleanup of old folders.
try
{
- Logger.LogDebug("Attempting to delete {0}", versions[x].Path);
+ Logger.LogDebug("Deleting {Path}", versions[x].Path);
Directory.Delete(versions[x].Path, true);
}
catch