blob: 8a92c56b3b0d9b9871ec5d1fef0f9dd456c9df6c [file] [log] [blame]
Benny Prijono8a0ab282008-01-23 20:17:42 +00001/* $Id$ */
2/*
3 * Copyright (C) 2003-2007 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#include "err.h"
20#include <pj/log.h>
21
22/* Redirect libsrtp error to PJ_LOG */
23
24err_reporting_level_t err_level = err_level_none;
25
26err_status_t
27err_reporting_init(char *ident) {
28 return err_status_ok;
29}
30
31void
32err_report(int priority, char *format, ...) {
33 va_list args;
34
Benny Prijono6d24ca52008-04-03 22:03:14 +000035#if PJ_LOG_MAX_LEVEL >= 1
Benny Prijono8a0ab282008-01-23 20:17:42 +000036 if (priority <= err_level) {
37
38 va_start(args, format);
39 pj_log("libsrtp", priority, format, args);
40 va_end(args);
41 }
Benny Prijono6d24ca52008-04-03 22:03:14 +000042#endif
Benny Prijono8a0ab282008-01-23 20:17:42 +000043}
44
45void
46err_reporting_set_level(err_reporting_level_t lvl) {
47 err_level = lvl;
48}
49