View Single Post
Old 04-18-2015, 10:59 PM   #2
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,255
Karma: 27110894
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
When the usual debug tools fail, the best approach is to run from source and stick in a few print statements. Since your problem seems to be splash screen related, look in gui2/main.py around line 180. And gui2/ui.py around line 338

Add in some print statements to see where it is getting stuck. You will need to redirect the prints to a log file, since on windowd gui programs have no working stdout, like this

print ('whatever', file=open('/path/to/log/file.txt', 'ab'))
kovidgoyal is online now   Reply With Quote