Skip to content

Commit 720ad1b

Browse files
committed
fix
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 1816aa5 commit 720ad1b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/resource/BridgeVifDriver.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ public LibvirtVMDef.InterfaceDef plug(NicTO nic, String guestOsType, String nicA
257257
protocol = Networks.BroadcastDomainType.Vlan.scheme();
258258
}
259259
if (isValidProtocolAndVnetId(vNetId, protocol)) {
260-
s_logger.debug("creating a vNet dev and bridge for public traffic per traffic label {}" + trafficLabel);
260+
s_logger.debug(String.format("creating a vNet dev and bridge for %s traffic per traffic label %s",
261+
Networks.TrafficType.Storage.name(), trafficLabel));
261262
storageBrName = createVnetBr(vNetId, storageBrName, protocol);
262263
}
263264
intf.defBridgeNet(storageBrName, null, nic.getMac(), getGuestNicModel(guestOsType, nicAdapter));

0 commit comments

Comments
 (0)