summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/chroma-cam2
-rwxr-xr-xbin/chroma-sim4
2 files changed, 6 insertions, 0 deletions
diff --git a/bin/chroma-cam b/bin/chroma-cam
index e81469e..25f0eb3 100755
--- a/bin/chroma-cam
+++ b/bin/chroma-cam
@@ -9,6 +9,8 @@ if __name__ == '__main__':
from chroma import view, build, EventViewer
from chroma import mesh_from_stl
from chroma.tools import enable_debug_on_crash
+ from chroma.log import logger, logging
+ logger.setLevel(logging.INFO)
parser = optparse.OptionParser('%prog')
parser.add_option('--debug', dest='debug', action='store_true',
diff --git a/bin/chroma-sim b/bin/chroma-sim
index 0d737c4..7f309de 100755
--- a/bin/chroma-sim
+++ b/bin/chroma-sim
@@ -16,6 +16,10 @@ if __name__ == '__main__':
from chroma.rootimport import ROOT
ROOT.gROOT.SetBatch()
+ from chroma.log import logger, logging
+ logger.setLevel(logging.INFO)
+
+
parser = optparse.OptionParser('%prog <detector>')
parser.add_option('-o', dest='output_filename',
help='output filename', default='out.root')