Quote:
Originally Posted by kacir
I personally use command
calibre-debug -g
but I use Linux and I like to use console when looking into problems.
You need the -g switch to start it in graphical user mode.
|
I added the following script as
Code:
#!/bin/bash
if [ $# -eq 0 ] || [[ "$1" = "--detach" ]]; then
echo -e "\n\n\nStarting calibre at $(date).\n\n\n" >> /tmp/calibre-debug-$USER.log 2>&1
calibre-debug -g 2>&1 | tee -a /tmp/calibre-debug-$USER.log
else
/usr/bin/calibre $@
fi
Then I just run via "calibre", or use the calibre.desktop launcher.
This way, I am ALWAYS in debug mode, just in case.