mirror of
https://github.com/Radarr/Radarr
synced 2025-12-30 12:13:21 +01:00
Log path in MediaFileAttributeService
This commit is contained in:
parent
42267da4ef
commit
24bd2ae59b
1 changed files with 2 additions and 2 deletions
|
|
@ -42,12 +42,12 @@ public void SetFilePermissions(string path)
|
|||
{
|
||||
if (ex is UnauthorizedAccessException || ex is InvalidOperationException || ex is FileNotFoundException)
|
||||
{
|
||||
_logger.Debug("Unable to apply folder permissions to: ", path);
|
||||
_logger.Debug("Unable to apply folder permissions to: {0}", path);
|
||||
_logger.Debug(ex, ex.Message);
|
||||
}
|
||||
else
|
||||
{
|
||||
_logger.Warn("Unable to apply folder permissions to: ", path);
|
||||
_logger.Warn("Unable to apply folder permissions to: {0}", path);
|
||||
_logger.Warn(ex, ex.Message);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue