Explorar el Código

debug clientarea

andre hace 2 años
padre
commit
cbbf3d7795
Se han modificado 1 ficheros con 0 adiciones y 24 borrados
  1. 0 24
      core/DependencyInjection/DependencyInjection.php

+ 0 - 24
core/DependencyInjection/DependencyInjection.php

@@ -16,14 +16,6 @@ class DependencyInjection
      */
      */
     public static function get($className = null, $methodName = null, $canClone = true)
     public static function get($className = null, $methodName = null, $canClone = true)
     {
     {
-        logModuleCall(
-            'kerioEmail',
-            __FUNCTION__,
-            'Debug Get',
-            'Debug Get',
-            $className
-        );
-
         if($methodName)
         if($methodName)
         {
         {
             return Container::getInstance()->call("$className@$methodName");
             return Container::getInstance()->call("$className@$methodName");
@@ -40,14 +32,6 @@ class DependencyInjection
      */
      */
     public static function create($className = null, $methodName = null, $canClone = true)
     public static function create($className = null, $methodName = null, $canClone = true)
     {
     {
-        logModuleCall(
-            'kerioEmail',
-            __FUNCTION__,
-            'Debug Create',
-            'Debug Create',
-            $className
-        );
-
         if($methodName)
         if($methodName)
         {
         {
             return Container::getInstance()->call("$className@$methodName");
             return Container::getInstance()->call("$className@$methodName");
@@ -63,14 +47,6 @@ class DependencyInjection
      */
      */
     public static function call($className = null, $methodName = null)
     public static function call($className = null, $methodName = null)
     {
     {
-        logModuleCall(
-            'kerioEmail',
-            __FUNCTION__,
-            'Debug Call',
-            'Debug Call',
-            $className
-        );
-
         if($methodName)
         if($methodName)
         {
         {
             return Container::getInstance()->call("$className@$methodName");
             return Container::getInstance()->call("$className@$methodName");