Skip to content
Snippets Groups Projects
Commit d4ad1d7b authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Remove error message when dom is not found in det

parent 654c01dc
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,8 @@ class PMTRates(kp.Module):
dom_id = tmch_data.dom_id
if dom_id not in self.detector.doms:
self.log.error(f"DOM ID {dom_id} not in detector definition!")
# it might be the "base CLB"
self.log.debug(f"DOM ID {dom_id} not in detector definition!")
return blob
du, floor, _ = self.detector.doms[dom_id]
......
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