doc/book/en/annexes/rql/debugging.rst
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 14 Oct 2010 00:10:07 +0200
changeset 6486 2b3fa6fb647b
parent 5924 b218df942dd4
child 7079 6024de6094f6
permissions -rw-r--r--
[doc] kill deprecated french documentation

.. -*- coding: utf-8 -*-

.. _DEBUGGING:

Debugging RQL
-------------

Available levels
~~~~~~~~~~~~~~~~

:DBG_NONE:
    no debug information (current mode)

:DBG_RQL:
    rql execution information

:DBG_SQL:
    executed sql

:DBG_REPO:
    repository events

:DBG_MS:
    multi-sources

:DBG_MORE:
    more verbosity

:DBG_ALL:
    all level enabled


Enable verbose output
~~~~~~~~~~~~~~~~~~~~~

It may be interested to enable a verboser output to debug your RQL statements:

.. sourcecode:: python

    from cubicweb import server
    server.set_debug(server.DBG_RQL|server.DBG_SQL|server.DBG_ALL)


Detect largest RQL queries
~~~~~~~~~~~~~~~~~~~~~~~~~~~

See `Profiling and performance` chapter (see :ref:`PROFILING`).


API
~~~

.. autofunction:: cubicweb.server.set_debug

.. autoclass:: cubicweb.server.debugged