From d7d565e119fd0f1fa3956e9be89ddd388256f4b5 Mon Sep 17 00:00:00 2001 From: Slava Krutelyov Date: Wed, 11 Oct 2017 09:20:25 -0700 Subject: [PATCH] reduce max errors/warnings per kind (per stream) to at most 1 --- FWCore/Modules/python/logErrorFilter_cfi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FWCore/Modules/python/logErrorFilter_cfi.py b/FWCore/Modules/python/logErrorFilter_cfi.py index 2fa2bc4ef6907..5c1a550f18bc8 100644 --- a/FWCore/Modules/python/logErrorFilter_cfi.py +++ b/FWCore/Modules/python/logErrorFilter_cfi.py @@ -13,8 +13,8 @@ atLeastOneError = cms.bool(True), atLeastOneWarning = cms.bool(True), useThresholdsPerKind = cms.bool(True), - maxErrorKindsPerLumi = cms.uint32(3), - maxWarningKindsPerLumi = cms.uint32(3), + maxErrorKindsPerLumi = cms.uint32(1), + maxWarningKindsPerLumi = cms.uint32(1), avoidCategories = cms.vstring() )