runHLT_standalone: Fix use of message level constants
Compare changes
@@ -72,6 +72,7 @@ from AthenaConfiguration.ComponentAccumulator import CAtoGlobalWrapper, conf2toC
@@ -534,7 +535,7 @@ if len(opt.condOverride)>0:
Fix unfortunate mistake made in !34445 (merged). For some reason, in the scope where it is used, logging.INFO = 20
is different from Constants.INFO = 3
. The comparison protecting overly verbose print-outs was comparing the current printing level to the wrong constant. As a result, a typical HLT athena job log was full of useless information and 20MB large instead of <5MB.