aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/ManagedFileSystem.cs
diff options
context:
space:
mode:
authortheguymadmax <theguymadmax@proton.me>2026-07-03 11:46:16 -0400
committertheguymadmax <theguymadmax@proton.me>2026-07-03 14:12:56 -0400
commit43a152359ebcc6168a1d1d9d21174f14c6b9bd9b (patch)
treed74b440b78da3bc5d05a1d292d88fb4e8aee36a5 /Emby.Server.Implementations/IO/ManagedFileSystem.cs
parentccc1712d10526d3a21e8136c702b84c46ac0a536 (diff)
Fix ghost entries when deleting library paths
Diffstat (limited to 'Emby.Server.Implementations/IO/ManagedFileSystem.cs')
-rw-r--r--Emby.Server.Implementations/IO/ManagedFileSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IO/ManagedFileSystem.cs b/Emby.Server.Implementations/IO/ManagedFileSystem.cs
index 199407044b..ede9b27592 100644
--- a/Emby.Server.Implementations/IO/ManagedFileSystem.cs
+++ b/Emby.Server.Implementations/IO/ManagedFileSystem.cs
@@ -691,7 +691,7 @@ namespace Emby.Server.Implementations.IO
}
catch (Exception ex) when (ex is UnauthorizedAccessException or DirectoryNotFoundException or SecurityException)
{
- _logger.LogError(ex, "Failed to enumerate path {Path}", path);
+ _logger.LogWarning("Failed to enumerate path \"{Path}\": {Message}", path, ex.Message);
return Enumerable.Empty<string>();
}
}