You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2018/07/11 16:13:08 UTC

[cloudstack] branch master updated: Fix typo in VirtualMachineManagerImpl.java (#2738)

This is an automated email from the ASF dual-hosted git repository.

dahn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/master by this push:
     new 2936cb3  Fix typo in VirtualMachineManagerImpl.java (#2738)
2936cb3 is described below

commit 2936cb3b4198fe5eb5bc2f7bdcb1309c07e0cebd
Author: Gabriel Beims Bräscher <ga...@gmail.com>
AuthorDate: Wed Jul 11 13:12:59 2018 -0300

    Fix typo in VirtualMachineManagerImpl.java (#2738)
    
    from "cleanued up" to "cleaned up"
---
 .../src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/engine/orchestration/src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java b/engine/orchestration/src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java
index 542cb4e..81b4e5b 100755
--- a/engine/orchestration/src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java
+++ b/engine/orchestration/src/main/java/com/cloud/vm/VirtualMachineManagerImpl.java
@@ -1572,7 +1572,7 @@ public class VirtualMachineManagerImpl extends ManagerBase implements VirtualMac
             }
 
             volumeMgr.release(profile);
-            s_logger.debug("Successfully cleanued up resources for the vm " + vm + " in " + state + " state");
+            s_logger.debug(String.format("Successfully cleaned up resources for the VM %s in %s state", vm, state));
         }
 
         return true;