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

[#3569] added ChangeLog entry

This commit is contained in:
Razvan Becheriu 2025-03-31 21:25:34 +03:00
parent 6c0444a0e3
commit b66fe236f8
4 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2336. [func] razvan
Added support for syslog backend in forensic log hook library.
(Gitlab #3569)
Kea 2.7.7 (development) released on March 26, 2025
2335. [func] razvan

View File

@ -34,7 +34,7 @@ LegalSyslog::LegalSyslog(const DatabaseConnection::ParameterMap& parameters)
/// loggers to be declared statically: the name is stored in a fixed-size
/// array to avoid the need to allocate heap storage during program
/// initialization (which causes problems on some operating systems).
/// e.g. or error: '<logger-name>' is not a valid name for a logger:
/// e.g. of error: '<logger-name>' is not a valid name for a logger:
/// valid names must be between 1 and 31 characters in length.
info.name_ = "legal-log-";
info.name_ += boost::lexical_cast<std::string>(reinterpret_cast<uint64_t>(this));

View File

@ -157,7 +157,7 @@ public:
/// loggers to be declared statically: the name is stored in a fixed-size
/// array to avoid the need to allocate heap storage during program
/// initialization (which causes problems on some operating systems).
/// e.g. or error: '<logger-name>' is not a valid name for a logger:
/// e.g. of error: '<logger-name>' is not a valid name for a logger:
/// valid names must be between 1 and 31 characters in length.
///
/// \note Note also that there is no constructor taking a std::string. This

View File

@ -68,7 +68,7 @@ public:
/// loggers to be declared statically: the name is stored in a fixed-size
/// array to avoid the need to allocate heap storage during program
/// initialization (which causes problems on some operating systems).
/// e.g. or error: '<logger-name>' is not a valid name for a logger:
/// e.g. of error: '<logger-name>' is not a valid name for a logger:
/// valid names must be between 1 and 31 characters in length.
///
/// \param name Name of the logger.