Remove left-over debugging output

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2020-08-11 00:35:53 +02:00
parent d3467daf44
commit 899fef6564
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -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)
-1
View File
@@ -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)
{