From 2d6ac963ba55a8f685bc6605bd319298549daa17 Mon Sep 17 00:00:00 2001
From: Frank Berghaus <frank.berghaus@cern.ch>
Date: Mon, 12 Oct 2020 12:46:51 +0200
Subject: [PATCH] Remove DEBUG output in bytestream CA config

Remove statements setting bytestream components OutputLevel to DEBUG in
production.
---
 Event/ByteStreamCnvSvc/python/ByteStreamConfig.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/Event/ByteStreamCnvSvc/python/ByteStreamConfig.py b/Event/ByteStreamCnvSvc/python/ByteStreamConfig.py
index 06a0eba988a..beac6466877 100644
--- a/Event/ByteStreamCnvSvc/python/ByteStreamConfig.py
+++ b/Event/ByteStreamCnvSvc/python/ByteStreamConfig.py
@@ -130,7 +130,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
         OutputDirectory="./",
         AppName="Athena",
         RunNumber=all_runs.pop(),
-        OutputLevel=2,
     )
     result.addService(event_storage_output)
     # release variable depends the way the env is configured
@@ -139,7 +138,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
     bytestream_conversion = comp_factory.ByteStreamCnvSvc(
         name="ByteStreamCnvSvc",
         ByteStreamOutputSvcList=[event_storage_output.getName()],
-        OutputLevel=2,
     )
     result.addService(bytestream_conversion)
 
@@ -148,7 +146,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
         EvtConversionSvc=bytestream_conversion.name,
         OutputFile="ByteStreamEventStorageOutputSvc",
         ItemList=type_names if type_names else list(),
-        OutputLevel=2,
     )
     result.addEventAlgo(output_stream, primary=True)
 
-- 
GitLab