Skip to content

Commit

Permalink
Use lsst prefix for standalone logger
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Oct 9, 2021
1 parent 93a5c75 commit 91f5c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/meas/base/forcedPhotCcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def makeDataRefList(self, namespace):
"""
if self.datasetType is None:
raise RuntimeError("Must call setDatasetType first")
log = logging.getLogger("meas.base.forcedPhotCcd.PerTractCcdDataIdContainer")
log = logging.getLogger(__name__).getChild("PerTractCcdDataIdContainer")
skymap = None
visitTract = collections.defaultdict(set) # Set of tracts for each visit
visitRefs = collections.defaultdict(list) # List of data references for each visit
Expand Down

0 comments on commit 91f5c80

Please sign in to comment.