Skip to content

Commit

Permalink
GlobalTag_condDBv2.py: remove misleading print out
Browse files Browse the repository at this point in the history
Do not print the global tag after expanding it.
This was both misleading (users overriding the global tag would still see the wrong print out) and not in line with the CMSSW practices (messages should be printed via the MessageLogger, not directly to the standard output).
  • Loading branch information
fwyzard committed Jul 21, 2014
1 parent 48f05fc commit 3a40fd1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Configuration/AlCa/python/GlobalTag_condDBv2.py
Expand Up @@ -90,7 +90,6 @@ def GlobalTag(essource = None, globaltag = None, conditions = None):
# Perform any alias expansion and consistency check.
# We are assuming the same connection and pfnPrefix/Postfix will be used for all GTs.
globaltag[0] = combineGTs(globaltag[0])
print "globaltag =", globaltag[0]
essource.globaltag = cms.string( str(globaltag[0]) )
if len(globaltag) > 1:
essource.connect = cms.string( str(globaltag[1]) )
Expand Down

0 comments on commit 3a40fd1

Please sign in to comment.