Author: duncan
Date: Thu Jun 14 20:24:39 2007
New Revision: 9693

Modified:
   branches/rel-1/freevo/src/plugins/joy.py

Log:
Updated logging debug messages


Modified: branches/rel-1/freevo/src/plugins/joy.py
==============================================================================
--- branches/rel-1/freevo/src/plugins/joy.py    (original)
+++ branches/rel-1/freevo/src/plugins/joy.py    Thu Jun 14 20:24:39 2007
@@ -58,6 +58,7 @@
 
         try:
             self.joyfd = os.open(self.device_name, os.O_RDONLY|os.O_NONBLOCK)
+            _debug_('self.joyfd = %s' % self.joyfd, level=5)
         except OSError:
 
             print 'Unable to open %s, trying /dev/js%s...' % \
@@ -66,6 +67,7 @@
 
             try:
                 self.joyfd = os.open(self.device_name, 
os.O_RDONLY|os.O_NONBLOCK)
+                _debug_('self.joyfd = %s' % self.joyfd, level=5)
             except OSError:
                 print 'Unable to open %s, check modules and/or permissions' % \
                       self.device_name
@@ -95,7 +97,6 @@
             return
 
         command = ''
-        _debug_('self.joyfd = %s' % self.joyfd, level=5)
         (r, w, e) = select.select([self.joyfd], [], [], 0)
         _debug_('r,w,e = %s,%s,%s' % (r,w,e), level=5)
 

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to