Use --compact option for abbreviated display output

--terse is meant for reducing log chatter.
This commit is contained in:
Ian Barwick
2019-02-02 13:05:39 +09:00
parent 20b79f998c
commit 48381a5b4e
7 changed files with 25 additions and 6 deletions

View File

@@ -267,6 +267,12 @@ main(int argc, char **argv)
runtime_options.no_wait = true;
break;
/* --compact */
case OPT_COMPACT:
runtime_options.compact = true;
break;
/*----------------------------
* database connection options
*----------------------------