CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_6/src/CalibTracker/SiStripDCS/python/MessLogger_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 MessageLogger = cms.Service("MessageLogger",
00004            suppressInfo = cms.untracked.vstring(),
00005            suppressDebug = cms.untracked.vstring(),
00006            suppressWarning = cms.untracked.vstring(),
00007 
00008            info = cms.untracked.PSet(
00009                 threshold = cms.untracked.string('INFO'),
00010                 #            limit = cms.untracked.int32(100000),
00011                 noLineBreaks = cms.untracked.bool(False)
00012                          ),
00013            debug = cms.untracked.PSet(
00014                 threshold = cms.untracked.string('debug'),
00015                 #            limit = cms.untracked.int32(100000),
00016                 noLineBreaks = cms.untracked.bool(False)
00017                          ),
00018            warning = cms.untracked.PSet(
00019                 threshold = cms.untracked.string('WARNING'),
00020                 #            limit = cms.untracked.int32(100000),
00021                 noLineBreaks = cms.untracked.bool(False)
00022                          ),
00023            cerr = cms.untracked.PSet(
00024                 threshold = cms.untracked.string('ERROR'),
00025                 #            limit = cms.untracked.int32(100000),
00026                 noLineBreaks = cms.untracked.bool(False)
00027                          ),
00028            error = cms.untracked.PSet(
00029                 threshold = cms.untracked.string('ERROR'),
00030                 #            limit = cms.untracked.int32(100000),
00031                 noLineBreaks = cms.untracked.bool(False)
00032                          ),
00033 
00034            debugModules = cms.untracked.vstring('*'),
00035            destinations = cms.untracked.vstring('cerr',
00036                                                 'info',
00037                                                 'warning',
00038                                                 'debug',
00039                                                 'error')
00040 )