From dc80ef0cde1db8a3ceb39230f8468c34f3b6961f Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 12 Sep 2012 17:11:54 +0200 Subject: starter: Added --nolog option to suppress logging in starter itself Fixes #224. --- src/starter/starter.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/starter/starter.c b/src/starter/starter.c index 166be3e45..c6efcb2f4 100644 --- a/src/starter/starter.c +++ b/src/starter/starter.c @@ -327,8 +327,8 @@ static bool check_pid(char *pid_file) static void usage(char *name) { - fprintf(stderr, "Usage: starter [--nofork] [--auto-update ] " - "[--debug|--debug-more|--debug-all]\n"); + fprintf(stderr, "Usage: starter [--nofork] [--auto-update ]\n" + " [--debug|--debug-more|--debug-all|--nolog]\n"); exit(LSB_RC_INVALID_ARGUMENT); } @@ -372,6 +372,10 @@ int main (int argc, char **argv) { current_loglevel = 4; } + else if (streq(argv[i], "--nolog")) + { + current_loglevel = 0; + } else if (streq(argv[i], "--nofork")) { no_fork = TRUE; -- cgit v1.2.3