From 899fef6564d9cec19f405e7d7fb962c436d82760 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Tue, 11 Aug 2020 00:35:53 +0200 Subject: [PATCH] Remove left-over debugging output Signed-off-by: DL6ER --- src/database/gravity-db.c | 2 -- src/regex.c | 1 - 2 files changed, 3 deletions(-) diff --git a/src/database/gravity-db.c b/src/database/gravity-db.c index bc94bbcd..c5d978af 100644 --- a/src/database/gravity-db.c +++ b/src/database/gravity-db.c @@ -898,8 +898,6 @@ bool gravityDB_get_regex_client_groups(clientsData* client, const unsigned int n while((rc = sqlite3_step(query_stmt)) == SQLITE_ROW) { const int result = sqlite3_column_int(query_stmt, 0); - if(config.debug & DEBUG_REGEX) - logg(" %i", result); for(unsigned int regexID = 0; regexID < numregex; regexID++) { if(regex[regexID].database_id == result) diff --git a/src/regex.c b/src/regex.c index 0c239349..fde39880 100644 --- a/src/regex.c +++ b/src/regex.c @@ -222,7 +222,6 @@ int match_regex(const char *input, const DNSCacheData* dns_cache, const int clie // Check possible additional regex settings if(dns_cache != NULL) { - logg("%d %d",regex[index].query_type,dns_cache->query_type); // Check query type filtering if(regex[index].query_type != 0) {