mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
pg_receivewal: Improve verbose mode
Some informational messages showed up even if verbose mode was not used. Move them to verbose mode. Author: Michael Paquier <michael.paquier@gmail.com> Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
This commit is contained in:
@ -120,7 +120,7 @@ stop_streaming(XLogRecPtr xlogpos, uint32 timeline, bool segment_finished)
|
||||
* slightly before the end of the WAL that we received on the previous
|
||||
* timeline, but it's close enough for reporting purposes.
|
||||
*/
|
||||
if (prevtimeline != 0 && prevtimeline != timeline)
|
||||
if (verbose && prevtimeline != 0 && prevtimeline != timeline)
|
||||
fprintf(stderr, _("%s: switched to timeline %u at %X/%X\n"),
|
||||
progname, timeline,
|
||||
(uint32) (prevpos >> 32), (uint32) prevpos);
|
||||
@ -130,8 +130,9 @@ stop_streaming(XLogRecPtr xlogpos, uint32 timeline, bool segment_finished)
|
||||
|
||||
if (time_to_abort)
|
||||
{
|
||||
fprintf(stderr, _("%s: received interrupt signal, exiting\n"),
|
||||
progname);
|
||||
if (verbose)
|
||||
fprintf(stderr, _("%s: received interrupt signal, exiting\n"),
|
||||
progname);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user