Skip to content
Snippets Groups Projects
Commit f0d53724 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

TrigServices: OutputLevel cleanup

- Remove hard-coded OutputLevels
- Do not rely on global OutputLevel/HLTOutputLevel variables


Former-commit-id: 6fd20258
parent a6d50474
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,7 @@ from AthenaCommon.Constants import *
# make the message service available
svcMgr.MessageSvc = theApp.service( "MessageSvc" ) # already instantiated
MessageSvc = svcMgr.MessageSvc
MessageSvc.OutputLevel = OutputLevel
MessageSvc.OutputLevel = theApp.OutputLevel
# Use color for different message levels
# --------------------------------------
......@@ -38,10 +37,7 @@ MessageSvc.errorLimit = 0
MessageSvc.fatalLimit = 0
# set message limit to unlimited when general DEBUG is requested
if (("OutputLevel" in dir()) and (OutputLevel<=DEBUG)) :
MessageSvc.defaultLimit = 0
MessageSvc.enableSuppression = False
if (("HLTOutputLevel" in dir()) and (HLTOutputLevel<=DEBUG)) :
if MessageSvc.OutputLevel<=DEBUG :
MessageSvc.defaultLimit = 0
MessageSvc.enableSuppression = False
......
......@@ -31,7 +31,7 @@ svcMgr += SG__HiveMgrSvc("EventDataSvc")
#svcMgr.EventDataSvc.OutputLevel = VERBOSE
from GaudiHive.GaudiHiveConf import AlgResourcePool
arp=AlgResourcePool( OutputLevel = INFO )
arp=AlgResourcePool()
arp.TopAlg=["AthMasterSeq"] #this should enable control flow
svcMgr += arp
......@@ -39,16 +39,12 @@ from AthenaCommon.AlgScheduler import AlgScheduler
#AlgScheduler.setThreadPoolSize(nThreads)
AlgScheduler.ShowDataDependencies(True)
AlgScheduler.ShowControlFlow(True)
AlgScheduler.OutputLevel=VERBOSE
from StoreGate.StoreGateConf import StoreGateSvc
svcMgr += StoreGateSvc()
svcMgr.StoreGateSvc.OutputLevel = VERBOSE
svcMgr.StoreGateSvc.Dump = True
from StoreGate.StoreGateConf import SGImplSvc
svcMgr += SGImplSvc("SGImplSvc")
svcMgr.SGImplSvc.OutputLevel = VERBOSE
# ThreadPoolService thread local initialization
from GaudiHive.GaudiHiveConf import ThreadPoolSvc
......@@ -72,10 +68,6 @@ theApp.AuditAlgorithms=True
from SGComps.SGCompsConf import SGCommitAuditor
theAuditorSvc += SGCommitAuditor()
# for easier browsing of verbose logs
ClassIDSvc = Service("ClassIDSvc")
ClassIDSvc.OutputLevel = DEBUG
# ==============================================================================
# Event selector and input service
# ==============================================================================
......
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