Skip to content
Snippets Groups Projects
Commit 2d6ac963 authored by Frank Berghaus's avatar Frank Berghaus :cityscape:
Browse files

Remove DEBUG output in bytestream CA config

Remove statements setting bytestream components OutputLevel to DEBUG in
production.
parent bb4405f0
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,6 @@ def ByteStreamWriteCfg(flags, type_names=None): ...@@ -130,7 +130,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
OutputDirectory="./", OutputDirectory="./",
AppName="Athena", AppName="Athena",
RunNumber=all_runs.pop(), RunNumber=all_runs.pop(),
OutputLevel=2,
) )
result.addService(event_storage_output) result.addService(event_storage_output)
# release variable depends the way the env is configured # release variable depends the way the env is configured
...@@ -139,7 +138,6 @@ def ByteStreamWriteCfg(flags, type_names=None): ...@@ -139,7 +138,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
bytestream_conversion = comp_factory.ByteStreamCnvSvc( bytestream_conversion = comp_factory.ByteStreamCnvSvc(
name="ByteStreamCnvSvc", name="ByteStreamCnvSvc",
ByteStreamOutputSvcList=[event_storage_output.getName()], ByteStreamOutputSvcList=[event_storage_output.getName()],
OutputLevel=2,
) )
result.addService(bytestream_conversion) result.addService(bytestream_conversion)
...@@ -148,7 +146,6 @@ def ByteStreamWriteCfg(flags, type_names=None): ...@@ -148,7 +146,6 @@ def ByteStreamWriteCfg(flags, type_names=None):
EvtConversionSvc=bytestream_conversion.name, EvtConversionSvc=bytestream_conversion.name,
OutputFile="ByteStreamEventStorageOutputSvc", OutputFile="ByteStreamEventStorageOutputSvc",
ItemList=type_names if type_names else list(), ItemList=type_names if type_names else list(),
OutputLevel=2,
) )
result.addEventAlgo(output_stream, primary=True) result.addEventAlgo(output_stream, primary=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment