aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2006-05-30 07:50:15 +0000
committerAndreas Steffen <andreas.steffen@strongswan.org>2006-05-30 07:50:15 +0000
commitd793980f5600f435edaf6f22eaee6b1b723d5e0c (patch)
treea7d231b4a30f8f4cee1bdc15b656e01119a22928 /src
parente1c00b96a6182c20b3a78d4bff70e77510e230a6 (diff)
downloadstrongswan-d793980f5600f435edaf6f22eaee6b1b723d5e0c.tar.bz2
strongswan-d793980f5600f435edaf6f22eaee6b1b723d5e0c.tar.xz
changed log level
Diffstat (limited to 'src')
-rw-r--r--src/charon/config/connections/local_connection_store.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/config/connections/local_connection_store.c b/src/charon/config/connections/local_connection_store.c
index 180205a9d..88a83aae9 100644
--- a/src/charon/config/connections/local_connection_store.c
+++ b/src/charon/config/connections/local_connection_store.c
@@ -74,7 +74,7 @@ static connection_t *get_connection_by_hosts(private_local_connection_store_t *t
connection_t *candidate;
connection_t *found = NULL;
- this->logger->log(this->logger, CONTROL|LEVEL1, "searching connection for host pair %s...%s",
+ this->logger->log(this->logger, CONTROL|LEVEL1, "looking for connection for host pair %s...%s",
my_host->get_address(my_host), other_host->get_address(other_host));
pthread_mutex_lock(&(this->mutex));
@@ -126,7 +126,7 @@ static connection_t *get_connection_by_hosts(private_local_connection_store_t *t
host_t *found_my_host = found->get_my_host(found);
host_t *found_other_host = found->get_other_host(found);
- this->logger->log(this->logger, CONTROL|LEVEL1,
+ this->logger->log(this->logger, CONTROL,
"found matching connection \"%s\": %s...%s (prio=%d)",
found->get_name(found),
found_my_host->get_address(found_my_host),