From c404786b9218fdaa8d9fba9790b1c4d29a83a73f Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Thu, 25 Sep 2014 09:46:44 +0200 Subject: [PATCH] logging: remove warning on missing debug messages The state of the DEBUG feature is now printed with chronyd version. --- logging.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/logging.c b/logging.c index 3ba71fc..2aff130 100644 --- a/logging.c +++ b/logging.c @@ -211,8 +211,6 @@ void LOG_SetDebugLevel(int level) { debug_level = level; if (level >= DEBUG_LEVEL_PRINT_DEBUG) { - if (!DEBUG) - LOG(LOGS_WARN, LOGF_Logging, "Not compiled with full debugging support"); log_debug_enabled = 1; } }