diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-04-10 00:16:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-10 00:16:37 +0200 |
| commit | f99237cf9b7c2c33c18fefafe79d50b5b414781f (patch) | |
| tree | cc9ed5185b50c7f584a015803217653d54ccc75b /Emby.Server.Implementations | |
| parent | 1a3352003d0736d4d18513fb0055ae3b6452cded (diff) | |
Update Emby.Server.Implementations/IO/ManagedFileSystem.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/IO/ManagedFileSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IO/ManagedFileSystem.cs b/Emby.Server.Implementations/IO/ManagedFileSystem.cs index 7c9b7c2d0..3893a1577 100644 --- a/Emby.Server.Implementations/IO/ManagedFileSystem.cs +++ b/Emby.Server.Implementations/IO/ManagedFileSystem.cs @@ -259,7 +259,7 @@ namespace Emby.Server.Implementations.IO catch (FileNotFoundException ex) { // Dangling symlinks cannot be detected before opening the file unfortunately... - Logger.LogError("Reading the file size of the symlink at {Path} failed. Marking the file as not existing.", ex); + Logger.LogError(ex, "Reading the file size of the symlink at {Path} failed. Marking the file as not existing.", fileInfo.FullName); result.Exists = false; } } |
