]> git.vomp.tv Git - vompclient-marten.git/commitdiff
Remove printfs
authorChris Tallon <chris@vomp.tv>
Sun, 14 May 2006 18:51:45 +0000 (18:51 +0000)
committerChris Tallon <chris@vomp.tv>
Sun, 14 May 2006 18:51:45 +0000 (18:51 +0000)
recman.cc
vrecordinglist.cc

index 0c66350475db99ee06c69c6b4b1c56749ea8b72e..e8c9d1506d77f209373918c0ba27afa292005419 100644 (file)
--- a/recman.cc
+++ b/recman.cc
@@ -51,8 +51,6 @@ void RecMan::addEntry(ULONG startTime, char* name, char* fileName)
 
   // And now for the directory structure & prog name
 
-  printf("%lu %s %s\n", startTime, name, fileName);
-
   char* c;
   char* d;
   stack<char*> dirNamesStack;
@@ -68,7 +66,6 @@ void RecMan::addEntry(ULONG startTime, char* name, char* fileName)
 
       if (!gotProgName)
       {
-        printf("Got prog name '%s'\n", d);
         rec->setProgName(d); // will copy from d to end of string
         *c = '\0';
         gotProgName = true;
@@ -99,7 +96,6 @@ void RecMan::addEntry(ULONG startTime, char* name, char* fileName)
     }
     else
     {
-      printf("making new dir '%s'\n", oneDirName);
       getDir = new Directory(oneDirName); // Make a new directory
       getDir->parent = targetDirectory;
       targetDirectory->dirList.push_back(getDir); // Put the new directory in the tree
index d9ae555b207cca994112a5045669368de36f6d95..ed1c04310cd3c88871fbc548f2523a45484a899f 100644 (file)
@@ -266,8 +266,6 @@ int VRecordingList::doResume()
 {
   Recording* toResume = getCurrentOptionRecording();
 
-  printf("%s\n", toResume->getFileName());
-
   if (toResume)
   {
     ULLONG position = VDR::getInstance()->getResumePoint(toResume->getFileName());