2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-02-24 00:41:20 +01:00
|
|
|
*/
|
|
|
|
|
2008-10-31 09:19:53 +01:00
|
|
|
#ifndef MPD_LOG_H
|
|
|
|
#define MPD_LOG_H
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-12-02 02:42:19 +01:00
|
|
|
#include <glib.h>
|
2008-11-05 18:39:10 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2011-09-09 21:40:28 +02:00
|
|
|
G_GNUC_CONST
|
|
|
|
static inline GQuark
|
|
|
|
log_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("log");
|
|
|
|
}
|
|
|
|
|
2009-02-19 08:35:20 +01:00
|
|
|
/**
|
|
|
|
* Configure a logging destination for daemon startup, before the
|
|
|
|
* configuration file is read. This allows the daemon to use the
|
|
|
|
* logging library (and the command line verbose level) before it's
|
|
|
|
* daemonized.
|
|
|
|
*
|
|
|
|
* @param verbose true when the program is started with --verbose
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
log_early_init(bool verbose);
|
|
|
|
|
2011-09-09 21:40:28 +02:00
|
|
|
bool
|
|
|
|
log_init(bool verbose, bool use_stdout, GError **error_r);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2008-11-05 18:39:10 +01:00
|
|
|
void setup_log_output(bool use_stdout);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-01 06:18:53 +02:00
|
|
|
int cycle_log_files(void);
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2006-08-01 06:18:53 +02:00
|
|
|
void close_log_files(void);
|
2004-06-12 04:06:16 +02:00
|
|
|
|
2006-08-01 06:18:53 +02:00
|
|
|
#endif /* LOG_H */
|