From fa6fbc5585c1ea8d9c8c3122bd692225b3dae1c3 Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Thu, 13 Aug 2015 12:34:19 +0200 Subject: [PATCH] Small wording improvements to the gnucash command line options This is based on a suggestion by Daniel GOUJOT on the devel mailing list --- src/bin/gnucash-bin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/gnucash-bin.c b/src/bin/gnucash-bin.c index 0328d99ede..9b5aff0601 100644 --- a/src/bin/gnucash-bin.c +++ b/src/bin/gnucash-bin.c @@ -98,7 +98,7 @@ static GOptionEntry options[] = { "debug", '\0', 0, G_OPTION_ARG_NONE, &debugging, - N_("Enable debugging mode: increasing logging to provide deep detail."), NULL + N_("Enable debugging mode: provide deep detail in the logs.\nThis is equivalent to: --log \"=info\" --log \"qof=info\" --log \"gnc=info\""), NULL }, { @@ -108,7 +108,7 @@ static GOptionEntry options[] = { "log", '\0', 0, G_OPTION_ARG_STRING_ARRAY, &log_flags, - N_("Log level overrides, of the form \"log.ger.path={debug,info,warn,crit,error}\""), + N_("Log level overrides, of the form \"modulename={debug,info,warn,crit,error}\"\nExamples: \"--log qof=debug\" or \"--log gnc.backend.file.sx=info\"\nThis can be invoked multiple times."), NULL },