--
You received this message because you are subscribed to the Google Groups "Jep Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jep-project+unsubscribe@googlegroups.com.
To post to this group, send email to jep-p...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jep-project/4db6581f-b433-4bec-b947-12a8bf1d07af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Starting debug server at port 52190Waiting for process connection...Use the following code to connect to the debugger:import pydevdpydevd.settrace('localhost', port=52190, stdoutToServer=True, stderrToServer=True)
import pydevd
...
pydevd.settrace('localhost', port=52190, stdoutToServer=True, stderrToServer=True)
...
To unsubscribe from this group and stop receiving emails from it, send an email to jep-project...@googlegroups.com.
The method works very well with eclipse.
I use a flag -DDEBUG_PYTHON when I start java application
And jep launchs import pydevd and pydevd.settrace()
Then break point set with eclipse in python scripts are triggered.
The only drawback is the need to start a python debug server
If not the application freezes until a debug server starts
Anyone know if it's possible to start a debug server from java, python or cmd?
(Without hitting the eclipse shortcut)
Greetings
Xavier.