##// END OF EJS Templates
TurboGears2 migration: update ini files for error email settings...
TurboGears2 migration: update ini files for error email settings Error emails are now handled by backlash, which is configured through TurboGears2's ErrorReporter. ErrorReporter expects different configuration key names than Pylons did, moreover under a new 'trace_errors' namespace. Since some of the email-related settings are shared between application and error emails, we cannot just rename the existing settings (it would be very odd to have application settings under a 'trace_errors' namespace). Requiring the user to duplicate its settings is also undesirable. Instead, use 'get' to populate the trace_errors namespace based on the existing settings we already had. Unfortunately, 'get' expects the setting to be actually present, so we need to provide an out-of-the-box value for the error-related email settings or there will be an error at startup. We use empty values because there is no realistic default value we can provide.

File last commit:

r5817:87ac42db default
r6529:b4c27fe6 default
Show More
debugging.rst
33 lines | 1.2 KiB | text/x-rst | RstLexer

Debugging Kallithea

If you encounter problems with Kallithea, here are some instructions on how to debug them.

Note

First make sure you're using the latest version available.

Enable detailed debug

Kallithea uses the standard Python logging module to log its output. By default only loggers with INFO level are displayed. To enable full output change level = DEBUG for all logging handlers in the currently used .ini file. This change will allow you to see much more detailed output in the log file or console. This generally helps a lot to track issues.

Enable interactive debug mode

To enable interactive debug mode simply comment out set debug = false in the .ini file. This will trigger an interactive debugger each time there is an error in the browser, or send a http link if an error occurred in the backend. This is a great tool for fast debugging as you get a handy Python console right in the web view.

Warning

NEVER ENABLE THIS ON PRODUCTION! The interactive console can be a serious security threat to your system.