mirror of
https://github.com/postgres/postgres.git
synced 2025-08-05 07:41:25 +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
|
* slightly before the end of the WAL that we received on the previous
|
||||||
* timeline, but it's close enough for reporting purposes.
|
* 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"),
|
fprintf(stderr, _("%s: switched to timeline %u at %X/%X\n"),
|
||||||
progname, timeline,
|
progname, timeline,
|
||||||
(uint32) (prevpos >> 32), (uint32) prevpos);
|
(uint32) (prevpos >> 32), (uint32) prevpos);
|
||||||
@@ -130,8 +130,9 @@ stop_streaming(XLogRecPtr xlogpos, uint32 timeline, bool segment_finished)
|
|||||||
|
|
||||||
if (time_to_abort)
|
if (time_to_abort)
|
||||||
{
|
{
|
||||||
fprintf(stderr, _("%s: received interrupt signal, exiting\n"),
|
if (verbose)
|
||||||
progname);
|
fprintf(stderr, _("%s: received interrupt signal, exiting\n"),
|
||||||
|
progname);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user