Update of /cvsroot/freevo/freevo/src/tv/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv31100

Modified Files:
        ivtv_record.py 
Log Message:
Since the recordserver has been stable for some time, we can remove some
of the original DEBUG messages... 


Index: ivtv_record.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/tv/plugins/ivtv_record.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** ivtv_record.py      31 Dec 2003 16:09:32 -0000      1.17
--- ivtv_record.py      9 Jan 2004 19:25:21 -0000       1.18
***************
*** 11,14 ****
--- 11,18 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.18  2004/01/09 19:25:21  outlyer
+ # Since the recordserver has been stable for some time, we can remove some
+ # of the original DEBUG messages...
+ #
  # Revision 1.17  2003/12/31 16:09:32  rshortt
  # Use the VideoGroup for this channel to change to the correct input on the
***************
*** 114,118 ****
          self.thread.mode_flag.set()
          
!         print('Recorder::Record: %s' % rec_prog)
          
          
--- 118,122 ----
          self.thread.mode_flag.set()
          
!         if DEBUG: print('Recorder::Record: %s' % rec_prog)
          
          
***************
*** 135,139 ****
      def run(self):
          while 1:
!             print('Record_Thread::run: mode=%s' % self.mode)
              if self.mode == 'idle':
                  self.mode_flag.wait()
--- 139,143 ----
      def run(self):
          while 1:
!             if DEBUG: print('Record_Thread::run: mode=%s' % self.mode)
              if self.mode == 'idle':
                  self.mode_flag.wait()
***************
*** 141,148 ****
                  
              elif self.mode == 'record':
!                 print 'Record_Thread::run: started recording'
  
                  fc = FreevoChannels()
!                 print 'CHAN: %s' % fc.getChannel()
  
                  tv_lock_file = config.FREEVO_CACHEDIR + '/record'
--- 145,152 ----
                  
              elif self.mode == 'record':
!                 if DEBUG: print 'Record_Thread::run: started recording'
  
                  fc = FreevoChannels()
!                 if DEBUG: print 'CHAN: %s' % fc.getChannel()
  
                  tv_lock_file = config.FREEVO_CACHEDIR + '/record'
***************
*** 160,167 ****
                  vg = fc.getVideoGroup(self.prog.tunerid)
  
!                 print 'Setting Input to %s' % vg.input_num
                  v.setinput(vg.input_num)
  
!                 print 'Setting Channel to %s' % self.prog.tunerid
                  fc.chanSet(str(self.prog.tunerid))
  
--- 164,171 ----
                  vg = fc.getVideoGroup(self.prog.tunerid)
  
!                 if DEBUG: print 'Setting Input to %s' % vg.input_num
                  v.setinput(vg.input_num)
  
!                 if DEBUG: print 'Setting Channel to %s' % self.prog.tunerid
                  fc.chanSet(str(self.prog.tunerid))
  
***************
*** 189,193 ****
                  os.remove(tv_lock_file)
  
!                 print('Record_Thread::run: finished recording')
  
                  self.mode = 'idle'
--- 193,197 ----
                  os.remove(tv_lock_file)
  
!                 if DEBUG: print('Record_Thread::run: finished recording')
  
                  self.mode = 'idle'




-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to