
/**
 ** Horde Logging
 **/

/* Should Horde log errors and other useful information? */
$conf['log']['enabled'] = true;

/* What log driver should we use? Valid values are 'file', 'mcal',
 * 'sql', and 'syslog'.
 */
$conf['log']['type'] = 'syslog';

/* What is the name of the log? For the 'file' driver, this is the
 * path to a text file; for mcal, it would be the name of a calendar,
 * and for sql it would be the table name to use. For the 'syslog'
 * driver it is the facility as a _constant_ (with no quotes), e.g.:
 * ... = LOG_LOCAL0;
 */
$conf['log']['name'] = LOG_SYSLOG;

/* What level of messages should we log? The values are LOG_EMERG,
 * LOG_ALERT, LOG_CRIT, LOG_ERR, LOG_WARNING, LOG_NOTICE, LOG_INFO,
 * and LOG_DEBUG. Each level logs itself and all those that come
 * before it: LOG_ALERT would only log alerts and emergencies, but
 * LOG_DEBUG would log everything.
 */
$conf['log']['priority'] = LOG_NOTICE;

/* What identifier should we use in the logs? */
$conf['log']['ident'] = 'HORDE';

/* Any additonal configuration information, like an MCAL or database
 * username and password.
 */
$conf['log']['params'] = array();
