summaryrefslogtreecommitdiff
path: root/tools.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools.c')
-rw-r--r--tools.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools.c b/tools.c
index 246455f..d685571 100644
--- a/tools.c
+++ b/tools.c
@@ -7,6 +7,7 @@ bool MoveVideoFile(cRecording *Recording,char *NewName)
if(!strcmp(Recording->FileName(),NewName))
return true;
+ isyslog("[extrecmenu] moving file %s to %s",Recording->FileName(),NewName);
int result=MakeDirs(NewName);
if(result)
{
@@ -19,5 +20,6 @@ bool MoveVideoFile(cRecording *Recording,char *NewName)
return true;
}
}
+ isyslog("[extrecmenu] moving failed");
return false;
}