Uses new dbg functions now.

FossilOrigin-Name: 4137a303def872855e883356aea15ff047babf50923ee71c437a947b195fe7c6
This commit is contained in:
7u83@mail.ru 2014-09-06 05:56:53 +00:00
parent 6cab07c9c1
commit 20e6dbd6c2
1 changed files with 5 additions and 4 deletions

View File

@ -9,12 +9,13 @@
#include <net/if.h>
#include <uci.h>
#include "capwap/capwap.h"
#include "capwap/cw_log.h"
#include "wtp_conf.h"
#include <uci.h>
#include "capwap/cw_log.h"
static struct uci_section * get_anon_section(struct uci_package * pkg, const char *type)
@ -59,7 +60,7 @@ int read_config(const char * filename){
int rc = uci_load(ctx, filename, &pkg );
if (rc == UCI_ERR_NOTFOUND){
cw_log_debug0("Config file '%s' not found, running without config",filename);
cw_dbg(DBG_CW_INFO,"Config file '%s' not found, running without config",filename);
return 1;
}
@ -73,7 +74,7 @@ int read_config(const char * filename){
struct uci_section * section = get_anon_section(pkg,"wtp");
if (!section) {
cw_log_debug0("No 'wtp' section found, running withou config");
cw_dbg(DBG_CW_INFO,"No 'wtp' section found, running withou config");
return 1;
}