1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00

Adding trace logging to DiskProvider.FileExists.

This commit is contained in:
Mark McDowall 2011-11-21 16:14:12 -08:00
parent 2708c75091
commit 2e3adf27ec

View File

@ -31,6 +31,7 @@ public virtual bool FolderExists(string path)
public virtual bool FileExists(string path) public virtual bool FileExists(string path)
{ {
Logger.Trace("Checking if File Exists: {0}", path);
return File.Exists(path); return File.Exists(path);
} }