mirror of https://github.com/apache/cloudstack.git
[VMware] Remove unnecessary logs on VM deployments (#6996)
This commit is contained in:
parent
96aaeac2a0
commit
43b4525f71
|
|
@ -40,8 +40,10 @@ public class NiciraNvpApiVersion {
|
|||
return (compare < 0);
|
||||
}
|
||||
|
||||
public static synchronized void logNiciraApiVersion(){
|
||||
s_logger.info("NSX API VERSION: " + ((niciraApiVersion != null) ? niciraApiVersion : " NOT PRESENT"));
|
||||
public static synchronized void logNiciraApiVersion() {
|
||||
if (niciraApiVersion != null) {
|
||||
s_logger.info(String.format("NSX API VERSION: %s", niciraApiVersion));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue