Skip to content
Snippets Groups Projects

Comment out debug printouts

Merged Riccardo Maria Bianchi requested to merge rbianchi-main-patch-70601 into main
All threads resolved!
1 file
+ 7
2
Compare changes
  • Side-by-side
  • Inline
#!/bin/bash
#
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
#
# Script to construct the command that launches Athena on vp1.py,
# with all the appropriate options (in the -c flag).
#
@@ -22,9 +26,10 @@
#fixme/todo: option to start cruise mode (event/second)
#fixme/todo: MULTINP_CPY should not be allowed to exist beforehand!
# For DEBUG only
# Prefix all output from this script with '[vp1]'
exec > >(trap "" INT TERM; sed 's/^/[vp1] /')
exec 2> >(trap "" INT TERM; sed 's/^/[vp1\/stderr] /' >&2)
#exec > >(trap "" INT TERM; sed 's/^/[vp1] /')
#exec 2> >(trap "" INT TERM; sed 's/^/[vp1\/stderr] /' >&2)
### TERMINAL COLORS ###
Loading