1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
import FWCore.ParameterSet.Config as cms
MessageLogger = cms.Service(
"MessageLogger",
debug = cms.untracked.PSet(
threshold = cms.untracked.string('DEBUG'),
limit = cms.untracked.uint32(100000),
noLineBreaks = cms.untracked.bool(False),
),
info = cms.untracked.PSet(
threshold = cms.untracked.string('INFO'),
limit = cms.untracked.uint32(100000),
noLineBreaks = cms.untracked.bool(False),
),
warning = cms.untracked.PSet(
threshold = cms.untracked.string('WARNING'),
limit = cms.untracked.uint32(100000),
noLineBreaks = cms.untracked.bool(False),
),
error = cms.untracked.PSet(
threshold = cms.untracked.string('ERROR'),
limit = cms.untracked.uint32(100000),
noLineBreaks = cms.untracked.bool(False),
),
cerr = cms.untracked.PSet(
threshold = cms.untracked.string('ERROR'),
limit = cms.untracked.uint32(100000),
noLineBreaks = cms.untracked.bool(False),
),
destinations = cms.untracked.vstring(
'debug',
'info',
'warning',
'error',
'cerr'
),
#@@ comment to suppress debug statements!
debugModules = cms.untracked.vstring('*'),
# allows to suppress output from specific modules
suppressDebug = cms.untracked.vstring(),
suppressInfo = cms.untracked.vstring(),
suppressWarning = cms.untracked.vstring(),
)
|