8000 pg_dump: Fix verbosity level in LO progress messages · sureandrew/postgres@6d16507 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6d16507

Browse files
committed
pg_dump: Fix verbosity level in LO progress messages
In passing, reword another instance of the same message that was gratuitously different. Author: Josh Kupershmidt after a bug report by Bosco Rama
1 parent d117d23 commit 6d16507

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/bin/pg_dump/pg_backup_archiver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ StartRestoreBlob(ArchiveHandle *AH, Oid oid)
755755
/* Initialize the LO Buffer */
756756
AH->lo_buf_used = 0;
757757

758-
ahlog(AH, 2, "restoring large object with OID %u\n", oid);
758+
ahlog(AH, 1, "restoring large object with OID %u\n", oid);
759759

760760
if (AH->connection)
761761
{

src/bin/pg_dump/pg_backup_tar.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ _LoadBlobs(ArchiveHandle *AH, RestoreOptions *ropt)
729729
oid = atooid(&th->targetFile[5]);
730730
if (oid != 0)
731731
{
732-
ahlog(AH, 1, "restoring large object OID %u\n", oid);
732+
ahlog(AH, 1, "restoring large object with OID %u\n", oid);
733733

734734
StartRestoreBlob(AH, oid);
735735

0 commit comments

Comments
 (0)
0