[VOL-3982] Improving locks on GemPort adn AllocId maps in Olt struct to avoid concurrency issues

Change-Id: Iaea4915856af6057e273e05a5f34087cfdf73cad
diff --git a/internal/common/omci/get.go b/internal/common/omci/get.go
index 5172f60..4b02bda 100644
--- a/internal/common/omci/get.go
+++ b/internal/common/omci/get.go
@@ -204,7 +204,7 @@
 
 	omciLogger.WithFields(log.Fields{
 		"EntityInstance": entityInstance,
-	}).Info("received-get-software-image-request")
+	}).Trace("received-get-software-image-request")
 
 	// Only one image can be active and committed
 	committed := 0
@@ -240,7 +240,7 @@
 		"entityId":    entityInstance,
 		"active":      active,
 		"committed":   committed,
-	}).Info("Reporting SoftwareImage")
+	}).Trace("Reporting SoftwareImage")
 
 	return res
 }