|
|
@@ -52,6 +52,14 @@ abstract class HttpController implements DefaultController
|
|
|
|
|
|
if (!$this->router->isControllerCallable() || !$this->isAdminContextValid())
|
|
|
{
|
|
|
+ logModuleCall(
|
|
|
+ 'ProxmoxVps',
|
|
|
+ __FUNCTION__,
|
|
|
+ $params,
|
|
|
+ 'debug1',
|
|
|
+ $this->getPageNotFound()
|
|
|
+ );
|
|
|
+
|
|
|
return $this->controllerResult = $this->getPageNotFound();
|
|
|
}
|
|
|
else
|
|
|
@@ -61,6 +69,14 @@ abstract class HttpController implements DefaultController
|
|
|
|
|
|
$this->controllerResult = $this->getControllerResponse();
|
|
|
}
|
|
|
+
|
|
|
+ logModuleCall(
|
|
|
+ 'ProxmoxVps',
|
|
|
+ __FUNCTION__,
|
|
|
+ $params,
|
|
|
+ 'debug2',
|
|
|
+ $this->controllerResult
|
|
|
+ );
|
|
|
|
|
|
return $this->resolveResponse();
|
|
|
}
|