From c8d0fb401f6e31d2fef51fcd7ad246bdd66924c0 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Tue, 27 Oct 2015 14:39:30 +0900 Subject: [PATCH] Add note about default log level --- config.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.c b/config.c index 837e6674..5f25487c 100644 --- a/config.c +++ b/config.c @@ -141,7 +141,10 @@ parse_config(t_configuration_options *options) return false; } - /* Initialize configuration options with sensible defaults */ + /* Initialize configuration options with sensible defaults + * note: the default log level is set in log.c and does not need + * to be initialised here + */ memset(options->cluster_name, 0, sizeof(options->cluster_name)); options->node = -1; options->upstream_node = NO_UPSTREAM_NODE;