mirror of https://github.com/Radarr/Radarr
Adding trace logging to DiskProvider.FileExists.
This commit is contained in:
parent
2708c75091
commit
2e3adf27ec
|
@ -31,6 +31,7 @@ namespace NzbDrone.Common
|
|||
|
||||
public virtual bool FileExists(string path)
|
||||
{
|
||||
Logger.Trace("Checking if File Exists: {0}", path);
|
||||
return File.Exists(path);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue