diff options
Diffstat (limited to 'src/common/logging.c')
-rw-r--r-- | src/common/logging.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/logging.c b/src/common/logging.c index 0b5bcb1a172..64604c52096 100644 --- a/src/common/logging.c +++ b/src/common/logging.c @@ -246,8 +246,7 @@ pg_log_generic_v(enum pg_log_level level, enum pg_log_part part, fmt = _(fmt); - if (part == PG_LOG_PRIMARY && - (!(log_flags & PG_LOG_FLAG_TERSE) || filename)) + if (!(log_flags & PG_LOG_FLAG_TERSE) || filename) { if (sgr_locus) fprintf(stderr, ANSI_ESCAPE_FMT, sgr_locus); |