mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
Adding trace logging to DiskProvider.FileExists.
This commit is contained in:
parent
2708c75091
commit
2e3adf27ec
1 changed files with 1 additions and 0 deletions
|
@ -31,6 +31,7 @@ public virtual bool FolderExists(string path)
|
|||
|
||||
public virtual bool FileExists(string path)
|
||||
{
|
||||
Logger.Trace("Checking if File Exists: {0}", path);
|
||||
return File.Exists(path);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue