Skip to content

Commit b66fe23

Browse files
author
Razvan Becheriu
committed
[#3569] added ChangeLog entry
1 parent 6c0444a commit b66fe23

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2336. [func] razvan
2+
Added support for syslog backend in forensic log hook library.
3+
(Gitlab #3569)
4+
15
Kea 2.7.7 (development) released on March 26, 2025
26

37
2335. [func] razvan

src/hooks/dhcp/forensic_log/legal_syslog.cc

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

src/lib/log/logger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class Logger {
157157
/// loggers to be declared statically: the name is stored in a fixed-size
158158
/// array to avoid the need to allocate heap storage during program
159159
/// initialization (which causes problems on some operating systems).
160-
/// e.g. or error: '<logger-name>' is not a valid name for a logger:
160+
/// e.g. of error: '<logger-name>' is not a valid name for a logger:
161161
/// valid names must be between 1 and 31 characters in length.
162162
///
163163
/// \note Note also that there is no constructor taking a std::string. This

src/lib/log/logger_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class LoggerImpl : public boost::noncopyable {
6868
/// loggers to be declared statically: the name is stored in a fixed-size
6969
/// array to avoid the need to allocate heap storage during program
7070
/// initialization (which causes problems on some operating systems).
71-
/// e.g. or error: '<logger-name>' is not a valid name for a logger:
71+
/// e.g. of error: '<logger-name>' is not a valid name for a logger:
7272
/// valid names must be between 1 and 31 characters in length.
7373
///
7474
/// \param name Name of the logger.

0 commit comments

Comments
 (0)