CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MessageLogger_cfi.py
Go to the documentation of this file.
2 
3 MessageLogger = cms.Service(
4  "MessageLogger",
5 
6  debug = cms.untracked.PSet(
7  threshold = cms.untracked.string('DEBUG'),
8  limit = cms.untracked.uint32(100000),
9  noLineBreaks = cms.untracked.bool(False),
10  ),
11 
12  info = cms.untracked.PSet(
13  threshold = cms.untracked.string('INFO'),
14  limit = cms.untracked.uint32(100000),
15  noLineBreaks = cms.untracked.bool(False),
16  ),
17 
18  warning = cms.untracked.PSet(
19  threshold = cms.untracked.string('WARNING'),
20  limit = cms.untracked.uint32(100000),
21  noLineBreaks = cms.untracked.bool(False),
22  ),
23 
24  error = cms.untracked.PSet(
25  threshold = cms.untracked.string('ERROR'),
26  limit = cms.untracked.uint32(100000),
27  noLineBreaks = cms.untracked.bool(False),
28  ),
29 
30  cerr = cms.untracked.PSet(
31  threshold = cms.untracked.string('ERROR'),
32  limit = cms.untracked.uint32(100000),
33  noLineBreaks = cms.untracked.bool(False),
34  ),
35 
36  destinations = cms.untracked.vstring(
37  'debug',
38  'info',
39  'warning',
40  'error',
41  'cerr'
42  ),
43 
44  #@@ comment to suppress debug statements!
45  debugModules = cms.untracked.vstring('*'),
46 
47  # allows to suppress output from specific modules
48  suppressDebug = cms.untracked.vstring(),
49  suppressInfo = cms.untracked.vstring(),
50  suppressWarning = cms.untracked.vstring(),
51 
52  )
53 
54