Fixed: Don't double log exception setting file permissions

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2019-09-10 22:20:11 -04:00
parent 65c767f70e
commit 59e84e9bc8

View file

@ -90,9 +90,7 @@ namespace NzbDrone.Core.MediaFiles
catch (Exception ex)
{
_logger.Warn(ex, "Unable to apply permissions to: " + path);
_logger.Debug(ex, ex.Message);
}
}
}