Home > Mobile >  Pycharm not debugging
Pycharm not debugging

Time:01-05

When I put my break point and run the debug mode, even if I do the right function definition it doesn't enter into the debug mode.

I put the break point and pycharm doesn't enter in the debug mode. No error is shown.

CodePudding user response:

wrong pycharm version, try the lastest one

CodePudding user response:

for odoo the debug will not work in pycharm or in any IDLE for python files .... you have to use logging to debug your code... for that search for logger in your core files you will get some examples, or you can also use print statement to debug your code, the results will be shown in terminal.

  • Related