1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-05 13:21:25 -05:00

Fixed: Only log /proc/mounts exception once per process

(cherry picked from commit ce0388ca99b7f89bd9e8971777a7995c4361d268)
This commit is contained in:
Mark McDowall
2022-12-20 17:07:11 -08:00
committed by Qstick
parent 0ca665c903
commit dc1b478f2c

View File

@@ -27,6 +27,8 @@ namespace NzbDrone.Mono.Disk
private static Dictionary<string, bool> _fileSystems;
private bool _hasLoggedProcMountFailure = false;
public ProcMountProvider(Logger logger)
{
_logger = logger;
@@ -45,7 +47,11 @@ namespace NzbDrone.Mono.Disk
}
catch (Exception ex)
{
_logger.Debug(ex, "Failed to retrieve mounts from {0}", PROC_MOUNTS_FILENAME);
if (!_hasLoggedProcMountFailure)
{
_logger.Debug(ex, "Failed to retrieve mounts from {0}", PROC_MOUNTS_FILENAME);
_hasLoggedProcMountFailure = true;
}
}
return new List<IMount>();