소스 검색

debug clientarea

andre 2 년 전
부모
커밋
cbbf3d7795
1개의 변경된 파일0개의 추가작업 그리고 24개의 파일을 삭제
  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)
     {
-        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");