From 14a8c979c12d4fa90ee5652f21e1f56ea7829b14 Mon Sep 17 00:00:00 2001 From: Christian Kreibich Date: Mon, 29 Nov 2021 11:38:22 -0800 Subject: [PATCH] Add missing debug() log function to log module's API --- scripts/policy/frameworks/cluster/controller/log.zeek | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/policy/frameworks/cluster/controller/log.zeek b/scripts/policy/frameworks/cluster/controller/log.zeek index 49aeb9b282..a0970728e8 100644 --- a/scripts/policy/frameworks/cluster/controller/log.zeek +++ b/scripts/policy/frameworks/cluster/controller/log.zeek @@ -32,6 +32,7 @@ export { global log_level = DEBUG &redef; + global debug: function(message: string); global info: function(message: string); global warning: function(message: string); global error: function(message: string);