@@ -186,7 +186,7 @@ validate_wal(pgBackup *backup,
186186
187187/* There are all need WAL records */
188188if (all_wal )
189- elog (INFO ,"backup validationstopped on time %s and xid " XID_FMT ,
189+ elog (INFO ,"backup validationcompleted successfully on time %s and xid " XID_FMT ,
190190last_timestamp ,last_xid );
191191/* There are not need WAL records */
192192else
@@ -213,17 +213,17 @@ validate_wal(pgBackup *backup,
213213time2iso (target_timestamp ,lengthof (target_timestamp ),
214214target_time );
215215
216- elog (WARNING ,"recovery can be done to time %s and xid " XID_FMT ,
216+ elog (WARNING ,"recovery can be doneup to time %s and xid " XID_FMT ,
217217last_timestamp ,last_xid );
218218
219219if (TransactionIdIsValid (target_xid )&& target_time != 0 )
220- elog (ERROR ,"there are no WAL records to time %s and xid " XID_FMT ,
220+ elog (ERROR ,"not enough WAL records to time %s and xid " XID_FMT ,
221221target_timestamp ,target_xid );
222222else if (TransactionIdIsValid (target_xid ))
223- elog (ERROR ,"there are no WAL records to xid " XID_FMT ,
223+ elog (ERROR ,"not enough WAL records to xid " XID_FMT ,
224224target_xid );
225225else if (target_time != 0 )
226- elog (ERROR ,"there are no WAL records to time %s" ,
226+ elog (ERROR ,"not enough WAL records to time %s" ,
227227target_timestamp );
228228}
229229}