2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#3875] fixed args order in flex option hook lib logs

This commit is contained in:
Razvan Becheriu 2025-05-27 16:58:07 +03:00
parent 89bca2d2bf
commit 290419eb36
3 changed files with 11 additions and 4 deletions

View File

@ -314,3 +314,6 @@ We have received the following contributions:
- q66 - q66
2025-01: Added support for building with Boost 1.87. 2025-01: Added support for building with Boost 1.87.
- Darwin4053
2025-06: Fixed arguments order in flex option hook library debug messages.

View File

@ -1,3 +1,7 @@
2348. [bug] razvan, Darwin4053
Fix arguments order in flex option hook library debug messages.
(Gitlab #3875)
Kea 2.7.9 (development) released on May 28, 2025 Kea 2.7.9 (development) released on May 28, 2025
2347. [build] andrei 2347. [build] andrei

View File

@ -490,8 +490,8 @@ void
FlexOptionImpl::logClass(const ClientClass& client_class, uint16_t code) { FlexOptionImpl::logClass(const ClientClass& client_class, uint16_t code) {
LOG_DEBUG(flex_option_logger, DBGLVL_TRACE_BASIC, LOG_DEBUG(flex_option_logger, DBGLVL_TRACE_BASIC,
FLEX_OPTION_PROCESS_CLIENT_CLASS) FLEX_OPTION_PROCESS_CLIENT_CLASS)
.arg(client_class) .arg(code)
.arg(code); .arg(client_class);
return; return;
} }
@ -550,9 +550,9 @@ FlexOptionImpl::logSubClass(const ClientClass& client_class, uint16_t code,
uint16_t container_code) { uint16_t container_code) {
LOG_DEBUG(flex_option_logger, DBGLVL_TRACE_BASIC, LOG_DEBUG(flex_option_logger, DBGLVL_TRACE_BASIC,
FLEX_OPTION_PROCESS_SUB_CLIENT_CLASS) FLEX_OPTION_PROCESS_SUB_CLIENT_CLASS)
.arg(client_class)
.arg(code) .arg(code)
.arg(container_code); .arg(container_code)
.arg(client_class);
return; return;
} }