mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-03 18:15:37 +00:00
Added Trace Logging to DiskProvider.DeleteFile.
This commit is contained in:
parent
ce73b45814
commit
95d1832379
1 changed files with 1 additions and 0 deletions
|
@ -121,6 +121,7 @@ private void TransferDirectory(string source, string target, TransferAction tran
|
||||||
|
|
||||||
public virtual void DeleteFile(string path)
|
public virtual void DeleteFile(string path)
|
||||||
{
|
{
|
||||||
|
Logger.Trace("Deleting file: {0}", path);
|
||||||
File.Delete(path);
|
File.Delete(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue