Skip to content

Commit

Permalink
GlobalTag.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 Jun 21, 2014
1 parent dde77b8 commit 691a4da
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Configuration/AlCa/python/GlobalTag.py
Original file line number Diff line number Diff line change
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 691a4da

Please sign in to comment.