pg_restore: Make not verbose by default

This was accidentally changed in
cc8d415117.

Reported-by: Christoph Berg <myon@debian.org>
This commit is contained in:
Peter Eisentraut 2019-04-10 11:45:00 +02:00
parent bdf35744bd
commit 765525c8c2
1 changed files with 2 additions and 0 deletions

View File

@ -131,6 +131,7 @@ main(int argc, char **argv)
};
pg_logging_init(argv[0]);
pg_logging_set_level(PG_LOG_WARNING);
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_dump"));
init_parallel_dump_utils();
@ -250,6 +251,7 @@ main(int argc, char **argv)
case 'v': /* verbose */
opts->verbose = 1;
pg_logging_set_level(PG_LOG_INFO);
break;
case 'w':