andre 4 лет назад
Родитель
Сommit
a3852df464
1 измененных файлов с 9 добавлено и 0 удалено
  1. 9 0
      app/UI/VmCreate/Providers/VmCreateProvider.php

+ 9 - 0
app/UI/VmCreate/Providers/VmCreateProvider.php

@@ -252,6 +252,15 @@ class VmCreateProvider extends BaseModelDataProvider implements ClientArea
         $diskSizeBytes = $this->formData['disk'];
         Utility::unitFormat($diskSizeBytes,'gb','bytes');
         $this->templateDiskSizeBytes = $this->vmTemplate->getMasterHardDisk()->getBytes();
+
+        logModuleCall(
+            'proxmoxCloud',
+            __FUNCTION__,
+            $diskSizeBytes,
+            'Debug',
+            $this->templateDiskSizeBytes
+        );
+
         return $diskSizeBytes > $this->templateDiskSizeBytes;
     }