+2230. [func] tmark
+ Both kea-dhcp4 and kea-dhcp6 will now emit a INFO
+ level log statement for each packet received and
+ sent by the server. Formerly these logs were only
+ emitted at DEBUG level.
+ (Gitlab #3203)
+
2229. [bug] tmark
Modified configure.ac to detect versions of MySQL
client libary for which MYSQL_OPT_RECONNECT is
// We have sanity checked (in accept() that the Message Type option
// exists, so we can safely get it here.
int type = query->getType();
- LOG_DEBUG(packet4_logger, DBG_DHCP4_BASIC_DATA, DHCP4_PACKET_RECEIVED)
+ LOG_INFO(packet4_logger, DHCP4_PACKET_RECEIVED)
.arg(query->getLabel())
.arg(query->getName())
.arg(type)
callout_handle->getArgument("response4", rsp);
}
- LOG_DEBUG(packet4_logger, DBG_DHCP4_BASIC, DHCP4_PACKET_SEND)
+ LOG_INFO(packet4_logger, DHCP4_PACKET_SEND)
.arg(rsp->getLabel())
.arg(rsp->getName())
.arg(static_cast<int>(rsp->getType()))
// Assign this packet to a class, if possible
classifyPacket(query);
- LOG_DEBUG(packet6_logger, DBG_DHCP6_BASIC_DATA, DHCP6_PACKET_RECEIVED)
+ LOG_INFO(packet6_logger, DHCP6_PACKET_RECEIVED)
.arg(query->getLabel())
.arg(query->getName())
.arg(static_cast<int>(query->getType()))
callout_handle->getArgument("response6", rsp);
}
- LOG_DEBUG(packet6_logger, DBG_DHCP6_BASIC, DHCP6_PACKET_SEND)
+ LOG_INFO(packet6_logger, DHCP6_PACKET_SEND)
.arg(rsp->getLabel())
.arg(rsp->getName())
.arg(static_cast<int>(rsp->getType()))