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

[#15,!10] Addressed review comments

This commit is contained in:
Thomas Markwalder 2019-06-12 07:06:14 -04:00
parent e119ecf6b7
commit c138f38bd0

View File

@ -54,7 +54,7 @@ void log_fatal (const char * fmt, ... )
{ {
va_list list; va_list list;
do_percentm (fbuf, sizeof(fbuf), fmt); do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe% /* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log. * If we truncate we hope the user can get a hint from the log.
@ -93,7 +93,7 @@ int log_error (const char * fmt, ...)
{ {
va_list list; va_list list;
do_percentm (fbuf, sizeof(fbuf), fmt); do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe% /* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log. * If we truncate we hope the user can get a hint from the log.
@ -120,7 +120,7 @@ int log_info (const char *fmt, ...)
{ {
va_list list; va_list list;
do_percentm (fbuf, sizeof(fbuf), fmt); do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe% /* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log. * If we truncate we hope the user can get a hint from the log.
@ -147,7 +147,7 @@ int log_debug (const char *fmt, ...)
{ {
va_list list; va_list list;
do_percentm (fbuf, sizeof(fbuf), fmt); do_percentm (fbuf, sizeof fbuf, fmt);
/* %Audit% This is log output. %2004.06.17,Safe% /* %Audit% This is log output. %2004.06.17,Safe%
* If we truncate we hope the user can get a hint from the log. * If we truncate we hope the user can get a hint from the log.