[VOL-5402]-VGC all fixes till date from jan 2024

Change-Id: I2857e0ef9b1829a28c6e3ad04da96b826cb900b6
Signed-off-by: Akash Soni <akash.soni@radisys.com>
diff --git a/internal/pkg/of/flows.go b/internal/pkg/of/flows.go
index aa43cfc..c0666d9 100644
--- a/internal/pkg/of/flows.go
+++ b/internal/pkg/of/flows.go
@@ -428,6 +428,7 @@
 	TableID   uint32
 	Priority  uint32
 	State     uint8
+	FlowCount uint32
 }
 
 // NewVoltSubFlow is constructor for VoltSubFlow
@@ -741,7 +742,7 @@
 	and := (vlan & 0xfff)
 	or := and + 0x1000
 	v := uint32(vlan&0x0fff + 0x1000)
-	logger.Infow(ctx, "Vlan Construction", log.Fields{"Vlan": vlan, "vlan&0x0fff": and, "OR": or, "final": v})
+	logger.Debugw(ctx, "Vlan Construction", log.Fields{"Vlan": vlan, "vlan&0x0fff": and, "OR": or, "final": v})
 	setField.Value = &ofp.OfpOxmOfbField_VlanVid{
 		VlanVid: uint32(vlan&0x0fff + 0x1000),
 	}