Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:30

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from FWCore.MessageService.MessageLogger_cfi import *
0004 MessageLogger.debugModules = cms.untracked.vstring('')
0005 MessageLogger.cerr =  cms.untracked.PSet(
0006     FwkReport = cms.untracked.PSet(
0007         limit = cms.untracked.int32(100),
0008         reportEvery = cms.untracked.int32(1000)
0009     ),
0010     threshold = cms.untracked.string('DEBUG'),
0011     noLineBreaks = cms.untracked.bool(False),
0012     DEBUG = cms.untracked.PSet(limit = cms.untracked.int32(0)),
0013     INFO = cms.untracked.PSet(limit = cms.untracked.int32(0)),
0014     Calibration = cms.untracked.PSet(limit = cms.untracked.int32(-1))
0015 )