mirror of
https://github.com/haproxy/haproxy.git
synced 2026-07-13 19:13:46 -04:00
MINOR: errors: does not check MODE_STARTING for log emission
ha_alert(), ha_warning() and ha_notice() shouldn't check MODE_STARTING for log emission. Let's remove the check. This shouldn't do much since the stdio_quiet() function mute the output in main().
This commit is contained in:
parent
b959b752f9
commit
59d699c0c4
1 changed files with 3 additions and 6 deletions
|
|
@ -444,8 +444,7 @@ void ha_alert(const char *fmt, ...)
|
|||
{
|
||||
va_list argp;
|
||||
|
||||
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE) ||
|
||||
!(global.mode & MODE_STARTING)) {
|
||||
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
|
||||
warn_exec_path();
|
||||
va_start(argp, fmt);
|
||||
print_message(1, "ALERT", fmt, argp);
|
||||
|
|
@ -463,8 +462,7 @@ void ha_warning(const char *fmt, ...)
|
|||
warned |= WARN_ANY;
|
||||
HA_ATOMIC_INC(&tot_warnings);
|
||||
|
||||
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE) ||
|
||||
!(global.mode & MODE_STARTING)) {
|
||||
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
|
||||
warn_exec_path();
|
||||
va_start(argp, fmt);
|
||||
print_message(1, "WARNING", fmt, argp);
|
||||
|
|
@ -515,8 +513,7 @@ void ha_notice(const char *fmt, ...)
|
|||
{
|
||||
va_list argp;
|
||||
|
||||
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE) ||
|
||||
!(global.mode & MODE_STARTING)) {
|
||||
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
|
||||
va_start(argp, fmt);
|
||||
print_message(1, "NOTICE", fmt, argp);
|
||||
va_end(argp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue