@@ -775,10 +775,10 @@ do_backup(time_t start_time)
775
775
is_checksum_enabled = pg_checksum_enable ();
776
776
777
777
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. "
779
779
"Data block corruption will be detected" );
780
780
else
781
- elog (WARNING , "This PostgreSQL instance initialized without data block checksums. "
781
+ elog (WARNING , "This PostgreSQL instance was initialized without data block checksums. "
782
782
"pg_probackup have no way to detect data block corruption without them. "
783
783
"Reinitialize PGDATA with option '--data-checksums'." );
784
784
@@ -1870,7 +1870,7 @@ backup_cleanup(bool fatal, void *userdata)
1870
1870
*/
1871
1871
if (current .status == BACKUP_STATUS_RUNNING && current .end_time == 0 )
1872
1872
{
1873
- elog (INFO , "Backup %s is running, setting its status to ERROR" ,
1873
+ elog (WARNING , "Backup %s is running, setting its status to ERROR" ,
1874
1874
base36enc (current .start_time ));
1875
1875
current .end_time = time (NULL );
1876
1876
current .status = BACKUP_STATUS_ERROR ;
@@ -1882,7 +1882,7 @@ backup_cleanup(bool fatal, void *userdata)
1882
1882
*/
1883
1883
if (backup_in_progress )
1884
1884
{
1885
- elog (LOG , "backup in progress, stop backup" );
1885
+ elog (WARNING , "backup in progress, stop backup" );
1886
1886
pg_stop_backup (NULL ); /* don't care stop_lsn on error case */
1887
1887
}
1888
1888
}
@@ -2560,7 +2560,7 @@ stop_streaming(XLogRecPtr xlogpos, uint32 timeline, bool segment_finished)
2560
2560
2561
2561
/* we assume that we get called once at the end of each segment */
2562
2562
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)" ),
2564
2564
(uint32 ) (xlogpos >> 32 ), (uint32 ) xlogpos , timeline );
2565
2565
2566
2566
/*
@@ -2664,7 +2664,7 @@ StreamLog(void *arg)
2664
2664
/*
2665
2665
* Start the replication
2666
2666
*/
2667
- elog (LOG , _ ("starting log streaming at %X/%X (timeline %u)\n " ),
2667
+ elog (LOG , _ ("started streaming WAL at %X/%X (timeline %u)" ),
2668
2668
(uint32 ) (startpos >> 32 ), (uint32 ) startpos , starttli );
2669
2669
2670
2670
#if PG_VERSION_NUM >= 90600
0 commit comments