diff --git a/scripts/ztplot.py b/scripts/ztplot.py index fdd98ca226f68b14080838be0f33d004e6730b92..c010e5d295ec14abf7f4e21971b82877c43cdbbc 100755 --- a/scripts/ztplot.py +++ b/scripts/ztplot.py @@ -120,8 +120,8 @@ class ZTPlot(kp.Module): n_triggered_dus = len(np.unique(hits[hits.triggered == True].du)) n_triggered_doms = len(np.unique(hits[hits.triggered == True].dom_id)) if n_triggered_dus < self.min_dus or n_triggered_doms < self.min_doms: - print(f"Skipping event with {n_triggered_dus} DUs " - f"and {n_triggered_doms} DOMs.") + self.log.debug(f"Skipping event with {n_triggered_dus} DUs " + f"and {n_triggered_doms} DOMs.") return blob # print("Event queue size: {0}".format(self.queue.qsize()))