Skip to content

Commit

Permalink
emit only info not warning on telescope type guess
Browse files Browse the repository at this point in the history
  • Loading branch information
kosack authored and maxnoe committed Jul 9, 2024
1 parent 0cc18fe commit 08d56f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ctapipe/io/simteleventsource.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,9 +637,9 @@ def prepare_subarray_info(self, telescope_descriptions, header):
)
except ValueError:
telescope = unknown_telescope(mirror_area, n_pixels)
self.log.warning(
"Could not determine telescope from sim_telarray metadata,"
" guessing using builtin lookup-table: %d: %s",
self.log.info(
"Could not determine telescope type from sim_telarray metadata,"
" guessing using builtin lookup-table: tel_id %d: %s",
tel_id,
telescope,
)
Expand Down

0 comments on commit 08d56f9

Please sign in to comment.