From b7313d5a24595e443a8a03a204f46d54d2d1558b Mon Sep 17 00:00:00 2001
From: Ruud Overeem <overeem@astron.nl>
Date: Tue, 26 Nov 2013 14:49:20 +0000
Subject: [PATCH] Task #1418: Movd 2 logmessages from DEBUG to INFO to  get
 more information about quit-states.

---
 MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc b/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc
index 7f7203aed6a..a49d30918a9 100644
--- a/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc
+++ b/MAC/APL/MainCU/src/MACScheduler/MACScheduler.cc
@@ -476,7 +476,7 @@ GCFEvent::TResult MACScheduler::active_state(GCFEvent& event, GCFPortInterface&
 	case CONTROL_QUITED: {
 		// The observationController is going down.
 		CONTROLQuitedEvent quitedEvent(event);
-		LOG_DEBUG_STR("Received QUITED(" << quitedEvent.cntlrName << "," << quitedEvent.result << ")");
+		LOG_INFO_STR("Received QUITED(" << quitedEvent.cntlrName << "," << quitedEvent.result << ")");
 
 		// update SAS database.
 		CMiter	theObs(itsControllerMap.find(quitedEvent.cntlrName));
@@ -495,7 +495,7 @@ GCFEvent::TResult MACScheduler::active_state(GCFEvent& event, GCFPortInterface&
 		}
 
 		// update our administration
-		LOG_DEBUG_STR("Removing observation " << quitedEvent.cntlrName << " from activeList");
+		LOG_INFO_STR("Removing observation " << quitedEvent.cntlrName << " from activeList");
 		itsControllerMap.erase(quitedEvent.cntlrName);
 		break;
 	}
-- 
GitLab