X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fcontrol%2Fduplicate.go;h=2110f1f79baa2272585d45f369d9be31528ff368;hb=53dbe7eafa69dcea736ba19c66581a80f374b51a;hp=6900941ac2d70cbfdfd18b018a1b341da5545f88;hpb=42723e2593926f1cfa144b503bf043a0fe36e657;p=ric-plt%2Fsubmgr.git diff --git a/pkg/control/duplicate.go b/pkg/control/duplicate.go index 6900941..2110f1f 100644 --- a/pkg/control/duplicate.go +++ b/pkg/control/duplicate.go @@ -97,7 +97,7 @@ func (d *duplicateCtrl) DeleteLastKnownRestSubsIdBasedOnMd5sum(md5sum string) { if !exists { if md5sum == "" { - xapp.Logger.Info("Attempted to delete a cached md5sum, md5sum not set yet") + xapp.Logger.Debug("Attempted to delete a cached md5sum, md5sum not set yet") } else { xapp.Logger.Error("Attempted to delete a cached md5sum %s, but the value was not found", md5sum) } @@ -133,7 +133,7 @@ func (d *duplicateCtrl) IsDuplicateToOngoingTransaction(restSubsId string, md5su entry, present := d.ongoingRequestMap[md5sum] if present { - xapp.Logger.Info("Collision detected. REST subs ID %s has ongoing transaction with md5sum : %s started at %s\n", entry.restSubsId, md5sum, entry.startTime.Format(time.ANSIC)) + xapp.Logger.Debug("Collision detected. REST subs ID %s has ongoing transaction with md5sum : %s started at %s\n", entry.restSubsId, md5sum, entry.startTime.Format(time.ANSIC)) d.collCount++ return true }