andre 2 rokov pred
rodič
commit
cbbf3d7795

+ 0 - 24
core/DependencyInjection/DependencyInjection.php

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