File indexing completed on 2024-04-06 12:08:38
0001 import FWCore.ParameterSet.Config as cms
0002
0003 MessageLogger = cms.Service(
0004 "MessageLogger",
0005
0006 debug = cms.untracked.PSet(
0007 threshold = cms.untracked.string('DEBUG'),
0008 limit = cms.untracked.uint32(100000),
0009 noLineBreaks = cms.untracked.bool(False),
0010 ),
0011
0012 info = cms.untracked.PSet(
0013 threshold = cms.untracked.string('INFO'),
0014 limit = cms.untracked.uint32(100000),
0015 noLineBreaks = cms.untracked.bool(False),
0016 ),
0017
0018 warning = cms.untracked.PSet(
0019 threshold = cms.untracked.string('WARNING'),
0020 limit = cms.untracked.uint32(100000),
0021 noLineBreaks = cms.untracked.bool(False),
0022 ),
0023
0024 error = cms.untracked.PSet(
0025 threshold = cms.untracked.string('ERROR'),
0026 limit = cms.untracked.uint32(100000),
0027 noLineBreaks = cms.untracked.bool(False),
0028 ),
0029
0030 cerr = cms.untracked.PSet(
0031 threshold = cms.untracked.string('ERROR'),
0032 limit = cms.untracked.uint32(100000),
0033 noLineBreaks = cms.untracked.bool(False),
0034 ),
0035
0036 destinations = cms.untracked.vstring(
0037 'debug',
0038 'info',
0039 'warning',
0040 'error',
0041 'cerr'
0042 ),
0043
0044
0045 debugModules = cms.untracked.vstring('*'),
0046
0047
0048 suppressDebug = cms.untracked.vstring(),
0049 suppressInfo = cms.untracked.vstring(),
0050 suppressWarning = cms.untracked.vstring(),
0051
0052 )
0053
0054