瀏覽代碼

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);
         $instance               = $this->resolve($class);
 
-            logModuleCall(
-                'ProxmoxAddon',
-                __FUNCTION__,
-                [$instance, $method],
-                'debug1',
-                unserialize($data)
-            );
-  
-
         return call_user_func_array([$instance, $method], [unserialize($data)]);
     }