conftest: Add support for time_format and ike_name options in log sections

Both options are well supported for normal operation but were completely
ignored by conftest, which used hard coded defaults. File options are
still missing but could be added in a similar way.
This commit is contained in:
Thomas Klute
2013-01-08 11:12:44 +01:00
committed by Martin Willi
parent b78698f755
commit 13c177852f
+18 -1
View File
@@ -377,6 +377,22 @@ static void load_log_levels(file_logger_t *logger, char *section)
}
}
/**
* Load logger options for a logger from section
*/
static void load_logger_options(file_logger_t *logger, char *section)
{
bool ike_name;
char *time_format;
time_format = conftest->test->get_str(conftest->test,
"log.%s.time_format", NULL, section);
ike_name = conftest->test->get_bool(conftest->test,
"log.%s.ike_name", FALSE, section);
logger->set_options(logger, time_format, ike_name);
}
/**
* Load logger configuration
*/
@@ -386,6 +402,7 @@ static void load_loggers(file_logger_t *logger)
char *section;
load_log_levels(logger, "stdout");
load_logger_options(logger, "stdout");
/* Re-add the logger to propagate configuration changes to the
* logging system */
charon->bus->add_logger(charon->bus, &logger->logger);
@@ -396,7 +413,7 @@ static void load_loggers(file_logger_t *logger)
if (!streq(section, "stdout"))
{
logger = file_logger_create(section);
logger->set_options(logger, NULL, FALSE);
load_logger_options(logger, section);
logger->open(logger, FALSE, FALSE);
load_log_levels(logger, section);
charon->bus->add_logger(charon->bus, &logger->logger);