VOL-1197 Do not log to console OMCI conversation
Change-Id: Ibc47c10cfdeb109cc7b1da9923fcddd6326fb6a0
diff --git a/common/server.cc b/common/server.cc
index b37e6dc..e1759cb 100644
--- a/common/server.cc
+++ b/common/server.cc
@@ -157,14 +157,17 @@
if (state.previsouly_connected()) {
// Reconciliation / recovery case
+ std::cout << "Reconciliation / Recovery case" << std::endl;
if (state.is_activated()){
// Adding extra olt indication of current state
openolt::Indication ind;
openolt::OltIndication* oltInd = new openolt::OltIndication();
if (state.is_activated()) {
oltInd->set_oper_state("up");
+ std::cout << "Extra OLT indication up" << std::endl;
} else {
oltInd->set_oper_state("down");
+ std::cout << "Extra OLT indication down" << std::endl;
}
ind.set_allocated_olt_ind(oltInd);
oltIndQ.push(ind);