python - How to debug PyDev GAE project on localhost? -


how 1 print out small string or inspect when running local google app engine server out of eclipse debug pydev gae project?

i tried solutions such this, not able find logs in local admin console, nor appearing in eclipse console.

pydev breakpoints not seem hit either, when use "debug as.."

what's best way go this?

add

import pdb;pdb.set_trace() 

just after place want breakpoints. use print statement terminal print whatever print. can use pprint.


Comments