mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
/*
|
|
* Copyright (C) 2009 1&1 Internet AG
|
|
*
|
|
* This file is part of sip-router, a free SIP server.
|
|
*
|
|
* sip-router 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
|
|
*
|
|
* sip-router 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef _LOG_H_
|
|
#define _LOG_H_
|
|
|
|
#include <syslog.h>
|
|
|
|
|
|
|
|
|
|
void init_log(char *_prgname, int _use_syslog);
|
|
|
|
void set_log_level(int level);
|
|
|
|
void destroy_log(void);
|
|
|
|
void pdb_log(int priority, char * format, ...);
|
|
|
|
#define LEMERG(fmt, args...) pdb_log(LOG_EMERG, fmt, ## args)
|
|
#define LALERT(fmt, args...) pdb_log(LOG_ALERT, fmt, ## args)
|
|
#define LCRIT(fmt, args...) pdb_log(LOG_CRIT, fmt, ## args)
|
|
#define LERR(fmt, args...) pdb_log(LOG_ERR, fmt, ## args)
|
|
#define LWARNING(fmt, args...) pdb_log(LOG_WARNING, fmt, ## args)
|
|
#define LNOTICE(fmt, args...) pdb_log(LOG_NOTICE, fmt, ## args)
|
|
#define LINFO(fmt, args...) pdb_log(LOG_INFO, fmt, ## args)
|
|
#define LDEBUG(fmt, args...) pdb_log(LOG_DEBUG, fmt, ## args)
|
|
|
|
|
|
|
|
|
|
#endif
|