From 2c1c49e499666d71053c9bd970b9dd4187a6a8f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 21 Jul 2019 17:51:02 +0200 Subject: [PATCH] conf: remove debug logging --- config.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/config.c b/config.c index 5f7e237f..5791db4c 100644 --- a/config.c +++ b/config.c @@ -269,8 +269,6 @@ parse_config_file(FILE *f, struct config *conf, const char *path) char *key = strtok(line, "="); char *value = strtok(NULL, "\n"); - LOG_INFO("key = %s, value = %s", key, value); - /* Strip trailing whitespace from key (leading stripped earlier) */ { assert(!isspace(*key));