blob: 50542407677175c7b0cba4db3ca4952fd184ecce [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
35 if (priority <= err_level) {
36
37 va_start(args, format);
38 pj_log("libsrtp", priority, format, args);
39 va_end(args);
40 }
41}
42
43void
44err_reporting_set_level(err_reporting_level_t lvl) {
45 err_level = lvl;
46}
47