mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
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:
@ -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':
|
||||
|
Reference in New Issue
Block a user