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