CMS 3D CMS Logo

myMessageLogger_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 #####################################################################
5 ## MessageLogger for convenient output
6 ######################################################################
7 MessageLogger = cms.Service(
8  "MessageLogger",
9  statistics = cms.untracked.vstring('alignment'), ##, 'cout')
10  categories = cms.untracked.vstring(
11  'Alignment',
12  'LogicError',
13  'FwkReport',
14  'TrackProducer'),
15  alignment = cms.untracked.PSet(
16  INFO = cms.untracked.PSet(
17  limit = cms.untracked.int32(10)
18  ),
19  DEBUG = cms.untracked.PSet(
20  limit = cms.untracked.int32(-1)
21  ),
22  WARNING = cms.untracked.PSet(
23  limit = cms.untracked.int32(10)
24  ),
25  ERROR = cms.untracked.PSet(
26  limit = cms.untracked.int32(-1)
27  ),
28  threshold = cms.untracked.string('DEBUG'),
29  LogicError = cms.untracked.PSet(
30  limit = cms.untracked.int32(-1)
31  ),
32  Alignment = cms.untracked.PSet(
33  limit = cms.untracked.int32(-1)
34  )
35  ),
36  destinations = cms.untracked.vstring('alignment') ## (, 'cout')
37 )