From 257a600e2af1e04c06d3623d43179ecda5205b9a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 27 Aug 2015 09:17:28 +0200 Subject: [PATCH] commented out a debuggin call that produced a bit too much noise in the logs --- include/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/plugin.php b/include/plugin.php index 9dc3ebd407..5a4755c319 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -173,7 +173,7 @@ function call_hooks($name, &$data = null) { @include_once($hook[0]); if(function_exists($hook[1])) { $func = $hook[1]; - logger($name." => ".$hook[0].":".$func."()", LOGGER_DEBUG); + //logger($name." => ".$hook[0].":".$func."()", LOGGER_DEBUG); $func($a,$data); } else {