Browse Source

bugfix -> debug

andre 2 years ago
parent
commit
cce6586111
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/UI/VmCreate/Validators/DiskSizeValidator.php

+ 2 - 2
app/UI/VmCreate/Validators/DiskSizeValidator.php

@@ -45,9 +45,9 @@ class DiskSizeValidator extends BaseValidator
         logModuleCall(
         logModuleCall(
             'ProxmoxCloudVps',
             'ProxmoxCloudVps',
             __FUNCTION__,
             __FUNCTION__,
-            $this->minValue . $this->maxValue,
+            'min: ' . $this->minValue . 'max: ' . $this->maxValue,
             'Debug',
             'Debug',
-            $data
+            'data: ' . $data
         );
         );
 
 
         if ($this->maxValue > $diskResource->getMax()) {
         if ($this->maxValue > $diskResource->getMax()) {