@@ -186,7 +186,7 @@ validate_wal(pgBackup *backup,
186
186
187
187
/* There are all need WAL records */
188
188
if (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 ,
190
190
last_timestamp ,last_xid );
191
191
/* There are not need WAL records */
192
192
else
@@ -213,17 +213,17 @@ validate_wal(pgBackup *backup,
213
213
time2iso (target_timestamp ,lengthof (target_timestamp ),
214
214
target_time );
215
215
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 ,
217
217
last_timestamp ,last_xid );
218
218
219
219
if (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 ,
221
221
target_timestamp ,target_xid );
222
222
else 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 ,
224
224
target_xid );
225
225
else 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" ,
227
227
target_timestamp );
228
228
}
229
229
}