Skip to content

Commit

Permalink
Fix logging to of seeing to use floats instead of truncated integers.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Nov 1, 2023
1 parent 7112b13 commit 7d4cf80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/selectImages.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ def run(self, visitSummaries, skyMap, dataId):
output = sortedVisits
else:
output = sortedVisits[:self.config.nVisitsMax]
self.log.info("%d images selected with FWHM range of %d--%d arcseconds",
self.log.info("%d images selected with FWHM range of %f--%f arcseconds",
len(output), fwhmSizes[visits.index(output[0])], fwhmSizes[visits.index(output[-1])])

# In order to store as a StructuredDataDict, convert list to dict
Expand Down

0 comments on commit 7d4cf80

Please sign in to comment.