Skip to content

Commit

Permalink
Improve specificity of logging when masking edge pixels.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Feb 15, 2023
1 parent 6872c4c commit e4a2e5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/cp/pipe/ptc/cpExtractPtcTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,8 +331,8 @@ def run(self, inputExp, inputDims, taskMetadata):

if self.config.numEdgeSuspect > 0:
isrTask = IsrTask()
self.log.info("Masking %d pixels from the edges of all exposures as SUSPECT.",
self.config.numEdgeSuspect)
self.log.info("Masking %d pixels from the edges of all %ss as SUSPECT.",
self.config.numEdgeSuspect, self.config.edgeMaskLevel)

# Depending on the value of config.matchExposuresType
# 'expTime' can stand for exposure time, flux, or ID.
Expand Down

0 comments on commit e4a2e5d

Please sign in to comment.