We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83362a0 + 6c8446f commit 14201deCopy full SHA for 14201de
lstchain/scripts/lstchain_check_dl1.py
@@ -85,13 +85,19 @@ def main():
85
geomlogger = logging.getLogger('ctapipe.instrument.camera')
86
geomlogger.setLevel(logging.ERROR)
87
88
+ # Avoid provenance info messages ("No activity has been explicitly
89
+ # started..."), which come from call to load_camera_geometry():
90
+ provlogger = logging.getLogger('ctapipe.core.provenance')
91
+ provlogger.setLevel(logging.WARNING)
92
+
93
if len(unknown) > 0:
94
ukn = ''
95
for s in unknown:
96
ukn += s + ' '
97
logger.error('Unknown options: ' + ukn)
98
exit(-1)
99
100
+ logger.info('Executing {}'.format(__name__))
101
logger.info('input files: {}'.format(args.input_file))
102
logger.info('output directory: {}'.format(args.output_dir))
103
0 commit comments