--
You received this message because you are subscribed to the Google Groups "Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mojolicious...@googlegroups.com.
To post to this group, send email to mojol...@googlegroups.com.
Visit this group at https://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.
I wouldn't trust "ctrl+c", because it just breaks the debugger at some random point in the code (probably somewhere unhelpful inside the event loop); I think it's better to set up breakpoints in advance. Use the $DB::single=1 trick to break the debugger at the point the code you're interested in is already loaded - startup() in your app or the beginning of an action method of your controller - and then set further breakpoints, watch vars, etc.
perl -d ./script/myapp.pl get -M POST -H 'Content-Type: application/x-www-form-urlencoded' -c 'user=username&password=thisspass' /auth