1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-11-24 08:52:38 +02:00

clarify Log message about restored file

This commit is contained in:
Anastasia 2017-05-04 17:25:31 +03:00
parent a5435cacad
commit 1eff9fce50

View File

@ -677,7 +677,8 @@ restore_files(void *arg)
copy_file(from_root, pgdata, file);
/* print size of restored file */
elog(LOG, "restored %lu\n", (unsigned long) file->write_size);
elog(LOG, "Restored file %s : %lu bytes",
file->path, (unsigned long) file->write_size);
}
}