Skip to content
Snippets Groups Projects
Commit 8c5b41a1 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Demoted a few AvalancheSchedulerSvc messages

parent 6f211679
No related branches found
No related tags found
1 merge request!576Demoted a few AvalancheSchedulerSvc messages
......@@ -9,8 +9,6 @@ ApplicationMgr SUCCESS
ApplicationMgr INFO Application Manager Configured successfully
ThreadPoolSvc INFO no thread init tools attached
AvalancheSchedu... INFO Activating scheduler in a separate thread
AvalancheSchedu... INFO Waiting for AvalancheSchedulerSvc to activate
AvalancheSchedu... INFO Start checking the actionsQueue
AlgResourcePool INFO TopAlg list empty. Recovering the one of Application Manager
AlgResourcePool INFO Algorithm THDataProducer is un-Clonable but Cardinality was set to 0. Only creating 1 instance
AlgResourcePool INFO Algorithm THDataProducer2 is un-Clonable but Cardinality was set to 0. Only creating 1 instance
......@@ -42,7 +40,6 @@ HiveSlimEventLo... INFO 0 events were SKIPed
ApplicationMgr INFO Application Manager Stopped successfully
HiveSlimEventLo... INFO Histograms converted successfully according to request.
AvalancheSchedu... INFO Joining Scheduler thread
AvalancheSchedu... INFO Terminating thread-pool resources
ToolSvc INFO Removing all tools created by ToolSvc
ApplicationMgr INFO Application Manager Finalized successfully
ApplicationMgr INFO Application Manager Terminated successfully
#include "AvalancheSchedulerSvc.h"
#include "AlgoExecutionTask.h"
#include "IOBoundAlgTask.h"
......@@ -82,7 +83,7 @@ StatusCode AvalancheSchedulerSvc::initialize()
fatal() << "Terminating initialization" << endmsg;
return StatusCode::FAILURE;
} else {
info() << "Waiting for AvalancheSchedulerSvc to activate" << endmsg;
ON_DEBUG debug() << "Waiting for AvalancheSchedulerSvc to activate" << endmsg;
sleep( 1 );
}
}
......@@ -379,7 +380,7 @@ void AvalancheSchedulerSvc::activate()
m_isActive = ACTIVE;
// Continue to wait if the scheduler is running or there is something to do
info() << "Start checking the actionsQueue" << endmsg;
ON_DEBUG debug() << "Start checking the actionsQueue" << endmsg;
while ( m_isActive == ACTIVE or m_actionsQueue.size() != 0 ) {
m_actionsQueue.pop( thisAction );
sc = thisAction();
......@@ -392,7 +393,7 @@ void AvalancheSchedulerSvc::activate()
}
}
info() << "Terminating thread-pool resources" << endmsg;
ON_DEBUG debug() << "Terminating thread-pool resources" << endmsg;
if ( m_threadPoolSvc->terminatePool().isFailure() ) {
error() << "Problems terminating thread pool" << endmsg;
m_isActive = FAILURE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment