Error Messages to STDERR

errmsg_stderr is an error message plugin that prints all drizzled: error messages to STDERR. Only server errors are printed; SQL errors, replication errors, etc. are not captured by error message plugins.

Loading

This plugin is loaded by default, but it may need to be configured. See the plugin’s Configuration and Variables.

To stop the plugin from loading by default, start drizzled with:

--plugin-remove=errmsg_stderr

See also

Plugin Options for more information about adding and removing plugins.

Configuration

This plugin does not have any command line options.

Variables

This plugin does not register any variables.

Examples

Redirect STDOUT and STDERR to drizzled.err:

sbin/drizzled >> drizzled.err 2>&1

Authors

Mark Atwood

Version

This documentation applies to errmsg_stderr 0.1.

To see which version of the plugin a Drizzle server is running, execute:

SELECT MODULE_VERSION FROM DATA_DICTIONARY.MODULES WHERE MODULE_NAME='errmsg_stderr'

Changelog

v0.1

  • First release.

Table Of Contents

Previous topic

Drizzle Protocol

Next topic

Error Dictionary

This Page