From 4663be0cbca186c51a15d76f2ec67952fadefa39 Mon Sep 17 00:00:00 2001
From: yoyamagu <yohei.yamaguchi@cern.ch>
Date: Wed, 14 Oct 2020 13:03:50 +0200
Subject: [PATCH] change print to AthenaCommon.Logging

---
 .../python/HLTMenuConfig/Muon/MuonSequenceSetup.py         | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSequenceSetup.py b/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSequenceSetup.py
index 9fa7b455986..50de2d38331 100644
--- a/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSequenceSetup.py
+++ b/Trigger/TriggerCommon/TriggerMenuMT/python/HLTMenuConfig/Muon/MuonSequenceSetup.py
@@ -5,7 +5,8 @@
 from TriggerMenuMT.HLTMenuConfig.Menu.MenuComponents import MenuSequence, RecoFragmentsPool
 from AthenaCommon.CFElements import parOR, seqAND, seqOR
 from AthenaConfiguration.AllConfigFlags import ConfigFlags
-
+from AthenaCommon.Logging import logging
+log = logging.getLogger('MuonSequenceSetup')
 
 #-----------------------------------------------------#
 ### Used the algorithms as Step1 "muFast step" ###
@@ -656,10 +657,10 @@ def getInsideOutMuonChainNames():
     try:
         chains += [chain.name for chain in muonSlice if "l2io" not in chain.name]
     except Exception as e:
-        print(e)
+        log.debug(e)
     try:
         chains += [chain.name for chain in bphysSlice if "l2io" not in chain.name]
     except Exception as e:
-        print(e)
+        log.debug(e)
 
     return chains
-- 
GitLab