[VOL-4525] openonuAdapterGo - reconciling of ONU falls back from status success to falied

Change-Id: I177bcdcb75990d6cc0860dcce114ac0a39d2eee7
diff --git a/internal/pkg/mib/onu_device_entry.go b/internal/pkg/mib/onu_device_entry.go
index 8ebf084..e956622 100755
--- a/internal/pkg/mib/onu_device_entry.go
+++ b/internal/pkg/mib/onu_device_entry.go
@@ -987,12 +987,14 @@
 }
 
 // SendChReconcilingFlowsFinished - TODO: add comment
-func (oo *OnuDeviceEntry) SendChReconcilingFlowsFinished(value bool) {
+func (oo *OnuDeviceEntry) SendChReconcilingFlowsFinished(ctx context.Context, value bool) {
 	if oo != nil { //if the object still exists (might have been already deleted in background)
 		//use asynchronous channel sending to avoid stucking on non-waiting receiver
 		select {
 		case oo.chReconcilingFlowsFinished <- value:
+			logger.Debugw(ctx, "reconciling - flows finished sent", log.Fields{"device-id": oo.deviceID})
 		default:
+			logger.Infow(ctx, "reconciling - flows finished not sent!", log.Fields{"device-id": oo.deviceID})
 		}
 	}
 }