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
|
import FWCore.ParameterSet.Config as cms
MessageLogger = cms.Service("MessageLogger",
suppressInfo = cms.untracked.vstring(),
suppressDebug = cms.untracked.vstring(),
suppressWarning = cms.untracked.vstring(),
info = cms.untracked.PSet(
threshold = cms.untracked.string('INFO'),
# limit = cms.untracked.int32(100000),
noLineBreaks = cms.untracked.bool(False)
),
debug = cms.untracked.PSet(
threshold = cms.untracked.string('DEBUG'),
# limit = cms.untracked.int32(100000),
noLineBreaks = cms.untracked.bool(False)
),
warning = cms.untracked.PSet(
threshold = cms.untracked.string('WARNING'),
# limit = cms.untracked.int32(100000),
noLineBreaks = cms.untracked.bool(False)
),
cerr = cms.untracked.PSet(
threshold = cms.untracked.string('ERROR'),
# limit = cms.untracked.int32(100000),
noLineBreaks = cms.untracked.bool(False)
),
error = cms.untracked.PSet(
threshold = cms.untracked.string('ERROR'),
# limit = cms.untracked.int32(100000),
noLineBreaks = cms.untracked.bool(False)
),
debugModules = cms.untracked.vstring('*'),
destinations = cms.untracked.vstring('cerr',
'info',
'warning',
'debug',
'error')
)
|