Browse Source

enable logging

andre 1 year ago
parent
commit
f4418bc052
1 changed files with 8 additions and 0 deletions
  1. 8 0
      core/App/Controllers/Instances/HttpController.php

+ 8 - 0
core/App/Controllers/Instances/HttpController.php

@@ -50,6 +50,14 @@ abstract class HttpController implements DefaultController
     {
         $this->setParams($params);
 
+        logModuleCall(
+            'kerioEmail',
+            __FUNCTION__,
+            $params,
+            'Debug Controller',
+            $this->router
+        );
+
         if (!$this->router->isControllerCallable() || !$this->isAdminContextValid())
         {
             return $this->controllerResult = $this->getPageNotFound();