##// END OF EJS Templates
docs about debugging
marcink -
r2119:4d076981 beta
parent child Browse files
Show More
@@ -0,0 +1,25 b''
1 .. _debugging:
2
3 ===================
4 DEBUGGING RHODECODE
5 ===================
6
7 If you encountered problems with RhodeCode here are some instructions how to
8 possibly debug them.
9
10 ** First make sure you're using the latest version available.**
11
12 enable detailed debug
13 ---------------------
14
15 RhodeCode uses standard python logging modules to log it's output.
16 By default only loggers with INFO level are displayed. To enable full output
17 change `level = DEBUG` for all logging handlers in currently used .ini file.
18 After this you can check much more detailed output of actions happening on
19 RhodeCode system.
20
21
22 enable interactive debug mode
23 -----------------------------
24
25 To enable interactive debug mode simply
@@ -1,59 +1,60 b''
1 1 .. _index:
2 2
3 3 .. include:: ./../README.rst
4 4
5 5 Users Guide
6 6 -----------
7 7
8 8 **Installation:**
9 9
10 10 .. toctree::
11 11 :maxdepth: 1
12 12
13 13 installation
14 14 setup
15 15 upgrade
16 16
17 17 **Usage**
18 18
19 19 .. toctree::
20 20 :maxdepth: 1
21 21
22 22 usage/general
23 23 usage/git_support
24 24 usage/statistics
25 25 usage/backup
26
26 usage/debugging
27
27 28 **Develop**
28 29
29 30 .. toctree::
30 31 :maxdepth: 1
31 32
32 33 contributing
33 34 changelog
34 35
35 36 **API**
36 37
37 38 .. toctree::
38 39 :maxdepth: 1
39 40
40 41 api/api
41 42 api/models
42 43
43 44
44 45 Other topics
45 46 ------------
46 47
47 48 * :ref:`genindex`
48 49 * :ref:`search`
49 50
50 51 .. _virtualenv: http://pypi.python.org/pypi/virtualenv
51 52 .. _python: http://www.python.org/
52 53 .. _django: http://www.djangoproject.com/
53 54 .. _mercurial: http://mercurial.selenic.com/
54 55 .. _bitbucket: http://bitbucket.org/
55 56 .. _subversion: http://subversion.tigris.org/
56 57 .. _git: http://git-scm.com/
57 58 .. _celery: http://celeryproject.org/
58 59 .. _Sphinx: http://sphinx.pocoo.org/
59 60 .. _vcs: http://pypi.python.org/pypi/vcs No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now