Skip to content

Commit

Permalink
Merge branch 'tickets/DM-42999'
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed Mar 1, 2024
2 parents b700894 + fe3cad6 commit 99cad8d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/lsst/meas/deblender/sourceDeblendTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,14 @@ def deblend(self, exposure, srcs, psf):
if self.isLargeFootprint(fp):
src.set(self.tooBigKey, True)
self.skipParent(src, mi.getMask())
self.log.warning('Parent %i: skipping large footprint (area: %i)',
int(src.getId()), int(fp.getArea()))
self.log.debug('Parent %i: skipping large footprint (area: %i)',
int(src.getId()), int(fp.getArea()))
continue
if self.isMasked(fp, exposure.getMaskedImage().getMask()):
src.set(self.maskedKey, True)
self.skipParent(src, mi.getMask())
self.log.warning('Parent %i: skipping masked footprint (area: %i)',
int(src.getId()), int(fp.getArea()))
self.log.debug('Parent %i: skipping masked footprint (area: %i)',
int(src.getId()), int(fp.getArea()))
continue

nparents += 1
Expand Down

0 comments on commit 99cad8d

Please sign in to comment.