Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:47

0001 # Unit test configuration file for MessageLogger service:
0002 # Intentional long header lines, to test the non-breaking behavior
0003 
0004 import FWCore.ParameterSet.Config as cms
0005 
0006 process = cms.Process("TEST")
0007 
0008 import FWCore.Framework.test.cmsExceptionsFatal_cff
0009 process.options = FWCore.Framework.test.cmsExceptionsFatal_cff.options
0010 
0011 process.load("FWCore.MessageService.test.Services_cff")
0012 
0013 process.MessageLogger = cms.Service("MessageLogger",
0014     debugModules = cms.untracked.vstring('*'),
0015     cerr = cms.untracked.PSet(
0016         enable = cms.untracked.bool(False)
0017     ),
0018     files = cms.untracked.PSet(
0019         u19_infos = cms.untracked.PSet(
0020             threshold = cms.untracked.string('INFO'),
0021             noTimeStamps = cms.untracked.bool(True),
0022             FwkTest = cms.untracked.PSet(
0023                 limit = cms.untracked.int32(0)
0024             )
0025         ),
0026         u19_debugs = cms.untracked.PSet(
0027             threshold = cms.untracked.string('DEBUG'),
0028             noTimeStamps = cms.untracked.bool(True),
0029             FwkTest = cms.untracked.PSet(
0030                 limit = cms.untracked.int32(0)
0031             )
0032         )
0033     )
0034 )
0035 
0036 process.maxEvents = cms.untracked.PSet(
0037     input = cms.untracked.int32(2)
0038 )
0039 
0040 process.source = cms.Source("EmptySource")
0041 
0042 process.sendSomeMessages = cms.EDAnalyzer("UnitTestClient_N")
0043 
0044 process.p = cms.Path(process.sendSomeMessages)