2 * Copyright (C) 2006 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup sys_logger sys_logger
20 * @{ @ingroup listeners
26 typedef struct sys_logger_t sys_logger_t
;
33 * Logger for syslog which implements listener_t.
38 * Implements the listener_t interface.
43 * Set the loglevel for a debug group.
45 * @param group debug group to set
46 * @param level max level to log (0..4)
48 void (*set_level
) (sys_logger_t
*this, debug_t group
, level_t level
);
51 * Destroys a sys_logger_t object.
53 void (*destroy
) (sys_logger_t
*this);
57 * Constructor to create a sys_logger_t object.
59 * @param facility syslog facility to use
60 * @return sys_logger_t object
62 sys_logger_t
*sys_logger_create(int facility
);
64 #endif /** SYS_LOGGER_H_ @}*/