CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MessLogger_cfi.py
Go to the documentation of this file.
2 
3 MessageLogger = cms.Service("MessageLogger",
4  suppressInfo = cms.untracked.vstring(),
5  suppressDebug = cms.untracked.vstring(),
6  suppressWarning = cms.untracked.vstring(),
7 
8  info = cms.untracked.PSet(
9  threshold = cms.untracked.string('INFO'),
10  # limit = cms.untracked.int32(100000),
11  noLineBreaks = cms.untracked.bool(False)
12  ),
13  debug = cms.untracked.PSet(
14  threshold = cms.untracked.string('DEBUG'),
15  # limit = cms.untracked.int32(100000),
16  noLineBreaks = cms.untracked.bool(False)
17  ),
18  warning = cms.untracked.PSet(
19  threshold = cms.untracked.string('WARNING'),
20  # limit = cms.untracked.int32(100000),
21  noLineBreaks = cms.untracked.bool(False)
22  ),
23  cerr = cms.untracked.PSet(
24  threshold = cms.untracked.string('ERROR'),
25  # limit = cms.untracked.int32(100000),
26  noLineBreaks = cms.untracked.bool(False)
27  ),
28  error = cms.untracked.PSet(
29  threshold = cms.untracked.string('ERROR'),
30  # limit = cms.untracked.int32(100000),
31  noLineBreaks = cms.untracked.bool(False)
32  ),
33 
34  debugModules = cms.untracked.vstring('*'),
35  destinations = cms.untracked.vstring('cerr',
36  'info',
37  'warning',
38  'debug',
39  'error')
40 )