diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-02-17 15:56:56 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-02-17 15:56:56 +0100 |
commit | 46cfd77f7521ad53934e1e42057723b4cd52d241 (patch) | |
tree | 3714de934092b24d6d23ee3df3ae30d7c1eb8b31 /src/logging_syslog.c | |
parent | 76e72abe329e7b36b88a8f939593d84b2ba00152 (diff) |
LOGGING: Add syslog log target
Diffstat (limited to 'src/logging_syslog.c')
-rw-r--r-- | src/logging_syslog.c | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/src/logging_syslog.c b/src/logging_syslog.c new file mode 100644 index 00000000..b65e8196 --- /dev/null +++ b/src/logging_syslog.c @@ -0,0 +1,72 @@ +/* Syslog logging support code */ + +/* (C) 2011 by Harald Welte <laforge@gnumonks.org> + * All Rights Reserved + * + * 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. + * + * 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. + * + */ + +#include "../config.h" + +#include <stdarg.h> +#include <stdlib.h> +#include <stdio.h> +#include <string.h> +#include <syslog.h> + +#ifdef HAVE_STRINGS_H +#include <strings.h> +#endif + +#include <osmocore/talloc.h> +#include <osmocore/utils.h> +#include <osmocore/logging.h> + +static const int logp2syslog_level(unsigned int level) +{ + if (level >= LOGL_FATAL) + return LOG_CRIT; + else if (level >= LOGL_ERROR) + return LOG_ERR; + else if (level >= LOGL_NOTICE) + return LOG_NOTICE; + else if (level >= LOGL_INFO) + return LOG_INFO; + else + return LOG_DEBUG; +} + +static void _syslog_output(struct log_target *target, + unsigned int level, const char *log) +{ + syslog(logp2syslog_level(level), "%s", log); +} + +struct log_target *log_target_create_syslog(const char *ident, int option, + int facility) +{ + struct log_target *target; + + target = log_target_create(); + if (!target) + return NULL; + + target->output = _syslog_output; + + openlog(ident, option, facility); + + return target; +} |