Skip to content

Commit

Permalink
Improve logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Oct 20, 2023
1 parent 781972d commit 252d7e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/lsst/the/monster/measure_offsetmaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def measure_offset_map(self, bands=None, overwrite=False):
if overwrite:
print(f"Found existing {fname}; will overwrite.")
else:
print(f"Found existing {fname}; overwrite=False so nothing to do.")
print(f"Found existing {fname}; overwrite=False so no need to remake map.")
return fname

print(f"Computing offset maps for {minuend_info.name} - {subtrahend_info.name}")
Expand Down Expand Up @@ -201,6 +201,8 @@ def plot_offset_maps(self, hsp_file):
minuend_info = self.MinuendInfoClass()
subtrahend_info = self.SubtrahendInfoClass()

print(f"Computing offset maps for {minuend_info.name} - {subtrahend_info.name}")

offset_map_in = hsp.HealSparseMap.read(hsp_file)

bands = []
Expand Down

0 comments on commit 252d7e6

Please sign in to comment.