Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 MLlog4cplus = cms.Service("MLlog4cplus")
0004 
0005 MessageLogger = cms.Service("MessageLogger",
0006     suppressWarning = cms.untracked.vstring(),
0007     # Threshold for messages streamed to log4cplus
0008     log4cplus = cms.untracked.PSet(
0009         threshold = cms.untracked.string('DEBUG')
0010     ),
0011     # allows to suppress output from specific modules 
0012     suppressDebug = cms.untracked.vstring(),
0013     #@@ comment to suppress debug statements!
0014     debugModules = cms.untracked.vstring('*'),
0015     suppressInfo = cms.untracked.vstring()
0016 )
0017 
0018