~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/debug/docs/index.rst

  • Committer: Mark Atwood
  • Date: 2011-09-13 19:54:55 UTC
  • mfrom: (2397.1.3 plugin-docs)
  • Revision ID: me@mark.atwood.name-20110913195455-3bk3locm85m4jimp
mergeĀ lp:~daniel-nichter/drizzle/plugin-docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Debugging Functions
 
2
===================
 
3
 
 
4
The ``debug`` plugin provides these debugging functions:
 
5
 
 
6
* ``ASSERT_AND_CRASH``
 
7
* ``BACKTRACE``
 
8
* ``TRACE``
 
9
 
 
10
These functions are for Drizzle developers.
 
11
 
 
12
.. _debug_loading:
 
13
 
 
14
Loading
 
15
-------
 
16
 
 
17
To load this plugin, start :program:`drizzled` with::
 
18
 
 
19
   --plugin-add=debug
 
20
 
 
21
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
 
22
 
 
23
.. _debug_authors:
 
24
 
 
25
Authors
 
26
-------
 
27
 
 
28
Brian Aker
 
29
 
 
30
.. _debug_version:
 
31
 
 
32
Version
 
33
-------
 
34
 
 
35
This documentation applies to **debug 1.1**.
 
36
 
 
37
To see which version of the plugin a Drizzle server is running, execute:
 
38
 
 
39
.. code-block:: mysql
 
40
 
 
41
   SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='debug'
 
42
 
 
43
Changelog
 
44
---------
 
45
 
 
46
v1.1
 
47
^^^^
 
48
* First release.