Javier Alvarez wrote:
> Hello this is the piece of log freevo when it is blocked.
> It blocked after a day and was  at the time of entering in a
> password-protected directory.
>
>
>
> Freevo 1.7.4 r10133 started at Fri Dec  7 17:45:39 2007
> --------------------------------------------------------------------------------
> 2007-12-07 17:45:39,950 INFO     config.py (477): logdir: /var/log
> /var/log/freevo
> 2007-12-07 17:45:39,951 INFO     config.py (478): staticdir: /var/lib
> /var/lib/freevo
> 2007-12-07 17:45:39,952 INFO     config.py (479): cachedir: /var/cache
> /var/cache/freevo
> 2007-12-07 17:45:39,953 INFO     config.py (498): Loading freevo
> configuration file "/home/epia/.freevo/freevo.conf"
> 2007-12-07 17:45:40,179 INFO     config.py (585): Loading local
> configuration file "/etc/freevo/local_conf.py"
> Error: VIDEO_SHOW_DATA_DIR not found
> 2007-12-07 17:45:40,228 INFO     config.py (983): overlaydir:
> /var/cache/freevo/vfs
> 2007-12-07 17:45:40,411 INFO     new process watcher instance
>
> Please run 'freevo cache'
>
> password protected dir
> password protected dir
> password protected dir
> password protected dir
> 2007-12-07 20:19:29,692 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:30,220 INFO     No Type found by Extension. Trying all
> 2007-12-07 20:19:30,538 INFO     Invalid header
> 2007-12-07 20:19:30,684 INFO     trying mpeg-pes scan
> 2007-12-07 20:19:30,830 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:30,927 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:31,520 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:31,524 INFO     SEGMENT: 0xffee, len=14
> 2007-12-07 20:19:31,632 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:32,176 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:32,908 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:33,524 INFO     SEGMENT: 0xffe0, len=16
> 2007-12-07 20:19:33,528 INFO     SEGMENT: 0xffee, len=14
> 2007-12-07 20:19:33,588 INFO     SEGMENT: 0xffe0, len=16
> no event mapping for key 3 in context video
> send button event BUTTON arg=3
> 2007-12-08 14:57:59,919 CRITICAL main.py (484): Crash!      --> enter
> in a  password-protected directory.

I wonder what the exception is, I guess that you are using the event
driver rather than lirc. It is possible that the event driver raises an
exception that should be caught and so not get here. Anyway can you try
this patch and report back what it says about Crash!

Thanks
Duncan

Index: src/main.py
===================================================================
--- src/main.py (revision 10184)
+++ src/main.py (working copy)
@@ -480,8 +480,8 @@
 except SystemExit:
     pass
 
-except:
-    _debug_('Crash!', config.DCRITICAL)
+except Exception, e:
+    _debug_('Crash!: %s' % (e), config.DCRITICAL)
     try:
         tb = sys.exc_info()[2]
         fname, lineno, funcname, text = traceback.extract_tb(tb)[-1]



-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to