Showing posts with label debug. Show all posts
Showing posts with label debug. Show all posts

Monday 22 February 2016

Activate Debug Mode in One Click


Activate Debug Mode in just One Click!!

If you are working with Odoo instance you need to activate debug mode frequently.

Here Chrome Extension .CRX file just drag and drop in your extension list and you able to activate debug mode in One click.
(Go to Setting > Extension and simply drag and drop attached .crx file)

Click here to Download :

Debug Mode


Specially Thanks to Hitesh Trivedi. ( Blog )

Note : Limited Feature to only Odoo site.
..Enjoy..

Friday 20 July 2012

Debugging your OpenERP module


                                                                                                                            Pinakin Nayi
                                                                                                                            OpenERP, Gandhinagar.
                                                                                                                            nayi.pinakin@gmail.com                

Debugging your OpenERP modules is quite straightforward, as long as you know basic Python programming. Just insert the following line in your
module:
import pdb;pdb.set_trace()
Then restart your openerp-server with the –debugoption
# openerp-server –debug
Then monitor your server console. You will see your server stop and show you a command line prompt where you will be able to debug your program.
You will find further information in the Python documentation website.

...Enjoy...