소스 검색

fix, remove logging

andre 4 달 전
부모
커밋
4792db7294
1개의 변경된 파일0개의 추가작업 그리고 9개의 파일을 삭제
  1. 0 9
      core/Queue/Manager.php

+ 0 - 9
core/Queue/Manager.php

@@ -64,15 +64,6 @@ class Manager
         list($class, $method)   = $this->parseJob($job);
         list($class, $method)   = $this->parseJob($job);
         $instance               = $this->resolve($class);
         $instance               = $this->resolve($class);
 
 
-            logModuleCall(
-                'ProxmoxAddon',
-                __FUNCTION__,
-                [$instance, $method],
-                'debug1',
-                unserialize($data)
-            );
-  
-
         return call_user_func_array([$instance, $method], [unserialize($data)]);
         return call_user_func_array([$instance, $method], [unserialize($data)]);
     }
     }