Skip to content

Commit

Permalink
Fix log message formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
parejkoj committed Sep 11, 2023
1 parent b42c7a5 commit b4ab571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/meas/astrom/fitTanSipWcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def fitWcs(self, matches, initWcs, bbox=None, refCat=None, sourceCat=None, expos
if rejected.sum() == len(rejected):
raise RuntimeError("All matches rejected in iteration %d" % (rej + 1,))
self.log.debug(
"Iteration %d of astrometry fitting: rejected %f outliers, out of %d total matches.",
"Iteration %d of astrometry fitting: rejected %d outliers, out of %d total matches.",
rej, rejected.sum(), len(rejected)
)
if debug.plot:
Expand Down

0 comments on commit b4ab571

Please sign in to comment.