@@ -775,10 +775,10 @@ do_backup(time_t start_time)
775775 is_checksum_enabled = pg_checksum_enable ();
776776
777777 if (is_checksum_enabled )
778- elog (LOG , "This PostgreSQL instance initialized with data block checksums. "
778+ elog (LOG , "This PostgreSQL instance was initialized with data block checksums. "
779779 "Data block corruption will be detected" );
780780 else
781- elog (WARNING , "This PostgreSQL instance initialized without data block checksums. "
781+ elog (WARNING , "This PostgreSQL instance was initialized without data block checksums. "
782782 "pg_probackup have no way to detect data block corruption without them. "
783783 "Reinitialize PGDATA with option '--data-checksums'." );
784784
@@ -1870,7 +1870,7 @@ backup_cleanup(bool fatal, void *userdata)
18701870 */
18711871 if (current .status == BACKUP_STATUS_RUNNING && current .end_time == 0 )
18721872 {
1873- elog (INFO , "Backup %s is running, setting its status to ERROR" ,
1873+ elog (WARNING , "Backup %s is running, setting its status to ERROR" ,
18741874 base36enc (current .start_time ));
18751875 current .end_time = time (NULL );
18761876 current .status = BACKUP_STATUS_ERROR ;
@@ -1882,7 +1882,7 @@ backup_cleanup(bool fatal, void *userdata)
18821882 */
18831883 if (backup_in_progress )
18841884 {
1885- elog (LOG , "backup in progress, stop backup" );
1885+ elog (WARNING , "backup in progress, stop backup" );
18861886 pg_stop_backup (NULL ); /* don't care stop_lsn on error case */
18871887 }
18881888}
@@ -2560,7 +2560,7 @@ stop_streaming(XLogRecPtr xlogpos, uint32 timeline, bool segment_finished)
25602560
25612561 /* we assume that we get called once at the end of each segment */
25622562 if (segment_finished )
2563- elog (LOG , _ ("finished segment at %X/%X (timeline %u)\n " ),
2563+ elog (LOG , _ ("finished streaming WAL at %X/%X (timeline %u)" ),
25642564 (uint32 ) (xlogpos >> 32 ), (uint32 ) xlogpos , timeline );
25652565
25662566 /*
@@ -2664,7 +2664,7 @@ StreamLog(void *arg)
26642664 /*
26652665 * Start the replication
26662666 */
2667- elog (LOG , _ ("starting log streaming at %X/%X (timeline %u)\n " ),
2667+ elog (LOG , _ ("started streaming WAL at %X/%X (timeline %u)" ),
26682668 (uint32 ) (startpos >> 32 ), (uint32 ) startpos , starttli );
26692669
26702670#if PG_VERSION_NUM >= 90600
0 commit comments