diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-03-31 17:39:02 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-04-06 12:47:40 +0200 |
commit | 894936ce9ed3fffd42bfb4939535ae421ea12c3a (patch) | |
tree | ea6fbabbb96b0ab384dad9c233e8739a65d50eb3 /src/libhydra/plugins/attr_sql/sql_attribute.c | |
parent | 8b0e09103b5e7e55b20380c44f093b1cef95480c (diff) | |
download | strongswan-894936ce9ed3fffd42bfb4939535ae421ea12c3a.tar.bz2 strongswan-894936ce9ed3fffd42bfb4939535ae421ea12c3a.tar.xz |
Replaced some DBG_LIB with more specific groups.
Diffstat (limited to 'src/libhydra/plugins/attr_sql/sql_attribute.c')
-rw-r--r-- | src/libhydra/plugins/attr_sql/sql_attribute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libhydra/plugins/attr_sql/sql_attribute.c b/src/libhydra/plugins/attr_sql/sql_attribute.c index c328fd2b3..a7cfde649 100644 --- a/src/libhydra/plugins/attr_sql/sql_attribute.c +++ b/src/libhydra/plugins/attr_sql/sql_attribute.c @@ -127,7 +127,7 @@ static host_t* check_lease(private_sql_attribute_t *this, char *name, host = host_create_from_chunk(AF_UNSPEC, address, 0); if (host) { - DBG1(DBG_LIB, "acquired existing lease for address %H in" + DBG1(DBG_CFG, "acquired existing lease for address %H in" " pool '%s'", host, name); return host; } @@ -202,13 +202,13 @@ static host_t* get_lease(private_sql_attribute_t *this, char *name, host = host_create_from_chunk(AF_UNSPEC, address, 0); if (host) { - DBG1(DBG_LIB, "acquired new lease for address %H in pool '%s'", + DBG1(DBG_CFG, "acquired new lease for address %H in pool '%s'", host, name); return host; } } } - DBG1(DBG_LIB, "no available address found in pool '%s'", name); + DBG1(DBG_CFG, "no available address found in pool '%s'", name); return NULL; } |