1
Error Messages To STDERR
2
========================
4
:program:`errmsg_stderr` is an error message plugin that prints all
5
:program:`drizzled`: error messages to ``STDERR``. Only server errors are
6
printed; SQL errors, replication errors, etc. are not captured by error
9
.. _errmsg_stderr_loading:
14
This plugin is loaded by default, but it may need to be configured. See
15
the plugin's :ref:`errmsg_stderr_configuration` and
16
:ref:`errmsg_stderr_variables`.
18
To stop the plugin from loading by default, start :program:`drizzled`
21
--plugin-remove=errmsg_stderr
23
.. seealso:: :doc:`/options` for more information about adding and removing plugins.
25
.. _errmsg_stderr_configuration:
30
This plugin does not have any command line options.
32
.. _errmsg_stderr_variables:
37
This plugin does not register any variables.
39
.. _errmsg_stderr_examples:
44
Redirect ``STDOUT`` and ``STDERR`` to :file:`drizzled.err`::
46
sbin/drizzled >> drizzled.err 2>&1
48
.. _errmsg_stderr_authors:
55
.. _errmsg_stderr_version:
60
This documentation applies to **errmsg_stderr 0.1**.
62
To see which version of the plugin a Drizzle server is running, execute:
66
SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='errmsg_stderr'