ipsec: Increased log level for message in case no outbound policy is found

This might happen on Android if sockets are bound to the physical IP
address but packets are still routed via TUN device.  Since it seems to
happen quite often (or for stuff that requires regular traffic) this
hides these messages from the default log.
This commit is contained in:
Tobias Brunner 2013-03-07 16:21:11 +01:00
parent e2d2b542f1
commit c994ec3b70
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ static job_requeue_t process_outbound(private_ipsec_processor_t *this)
policy = ipsec->policies->find_by_packet(ipsec->policies, packet, FALSE);
if (!policy)
{
DBG1(DBG_ESP, "no matching outbound IPsec policy for %H == %H",
DBG2(DBG_ESP, "no matching outbound IPsec policy for %H == %H",
packet->get_source(packet), packet->get_destination(packet));
packet->destroy(packet);
return JOB_REQUEUE_DIRECT;