conftest: Fix log level settings for stdout

This patch fixes bug #272 ("conftest ignores log settings for stdout").
http://wiki.strongswan.org/issues/272

According to the documentation of add_logger in src/libcharon/bus/bus.h,
the relevant log levels of a logger are registered with the logging
subsystem when adding the logger. If the log levels change later, the
logger must be re-added to propagate the new settings. In conftest.c,
the stdout logger is initialized and added before reading the logging
settings, but wasn't re-added after reading the settings.
This commit is contained in:
Thomas Klute 2013-01-03 16:03:44 +01:00 committed by Martin Willi
parent 4e51cf895e
commit b78698f755
1 changed files with 3 additions and 0 deletions

View File

@ -386,6 +386,9 @@ static void load_loggers(file_logger_t *logger)
char *section;
load_log_levels(logger, "stdout");
/* Re-add the logger to propagate configuration changes to the
* logging system */
charon->bus->add_logger(charon->bus, &logger->logger);
enumerator = conftest->test->create_section_enumerator(conftest->test, "log");
while (enumerator->enumerate(enumerator, &section))