Skip to content

Commit

Permalink
Fix logging bug in histPlot
Browse files Browse the repository at this point in the history
  • Loading branch information
sr525 committed Nov 29, 2023
1 parent 66367b3 commit 95a645d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/analysis/tools/actions/plot/histPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def _getPanelRange(self, data, panel, mads=None, meds=None):
minMed = np.nanmin(meds)
panel_range = [minMed - lowerRange * maxMad, maxMed + upperRange * maxMad]
if panel_range[1] - panel_range[0] == 0:
self.log.info(
log.info(
"NOTE: panel_range for {} based on med/sigMad was 0. Computing using "
"percentile range instead.".format(panel)
)
Expand Down

0 comments on commit 95a645d

Please sign in to comment.