CMS 3D CMS Logo

MessageLogger_ReleaseValidation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 _category = cms.optional.untracked.PSetTemplate(
4  reportEvery = cms.untracked.int32(1),
5  limit = cms.optional.untracked.int32,
6  timespan = cms.optional.untracked.int32
7 )
8 
9 _destination_base = cms.untracked.PSet(
10  noLineBreaks = cms.optional.untracked.bool,
11  noTimeStamps = cms.optional.untracked.bool,
12  lineLength = cms.optional.untracked.int32,
13  threshold = cms.optional.untracked.string,
14  statisticsThreshold = cms.optional.untracked.string,
15  allowAnyLabel_ = _category
16 )
17 _destination_no_stat = _destination_base.clone(
18  enableStatistics = cms.untracked.bool(False),
19  resetStatistics = cms.untracked.bool(False)
20 )
21 
22 _file_destination = cms.optional.untracked.PSetTemplate(
23  noLineBreaks = cms.optional.untracked.bool,
24  noTimeStamps = cms.optional.untracked.bool,
25  lineLength = cms.optional.untracked.int32,
26  threshold = cms.optional.untracked.string,
27  statisticsThreshold = cms.optional.untracked.string,
28  enableStatistics = cms.untracked.bool(False),
29  resetStatistics = cms.untracked.bool(False),
30  filename = cms.optional.untracked.string,
31  extension = cms.optional.untracked.string,
32  output = cms.optional.untracked.string,
33  allowAnyLabel_ = _category
34 )
35 
36 _default_pset = cms.untracked.PSet(
37  reportEvery = cms.untracked.int32(1),
38  limit = cms.optional.untracked.int32,
39  timespan = cms.optional.untracked.int32,
40 
41  noLineBreaks = cms.untracked.bool(False),
42  noTimeStamps = cms.untracked.bool(False),
43  lineLength = cms.untracked.int32(80),
44  threshold = cms.untracked.string("INFO"),
45  statisticsThreshold = cms.untracked.string("INFO"),
46  allowAnyLabel_ = _category
47 )
48 
49 
50 MessageLogger = cms.Service("MessageLogger",
51  suppressWarning = cms.untracked.vstring(),
52  suppressFwkInfo = cms.untracked.vstring(),
53  suppressInfo = cms.untracked.vstring(),
54  suppressDebug = cms.untracked.vstring(),
55  debugModules = cms.untracked.vstring(),
56  cout = _destination_no_stat.clone(
57  enable = cms.untracked.bool(False)
58  ),
59  default = _default_pset.clone(),
60  cerr = _destination_base.clone(
61  enable = cms.untracked.bool(True),
62  enableStatistics = cms.untracked.bool(True),
63  resetStatistics = cms.untracked.bool(False),
64  statisticsThreshold = cms.untracked.string('INFO'),
65  INFO = cms.untracked.PSet(
66  limit = cms.untracked.int32(5)
67  ),
68  noTimeStamps = cms.untracked.bool(False),
69  FwkReport = cms.untracked.PSet(
70  reportEvery = cms.untracked.int32(1),
71  limit = cms.untracked.int32(10000000)
72  ),
73  default = cms.untracked.PSet(
74  limit = cms.untracked.int32(10000000)
75  ),
76  Root_NoDictionary = cms.untracked.PSet(
77  limit = cms.untracked.int32(0)
78  ),
79  FwkSummary = cms.untracked.PSet(
80  reportEvery = cms.untracked.int32(1),
81  limit = cms.untracked.int32(10000000)
82  ),
83  threshold = cms.untracked.string('INFO')
84  ),
85  files = cms.untracked.PSet(
86  allowAnyLabel_ = _file_destination
87  ),
88  allowAnyLabel_ = _category
89 )
90 
91