Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-37534: Replace debugf logging with standard logging #145

Merged
merged 1 commit into from
Feb 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions python/lsst/faro/measurement/ForcedSourceTableMeasurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
Expand Down Expand Up @@ -156,8 +156,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
Expand Down Expand Up @@ -197,8 +197,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
8 changes: 4 additions & 4 deletions python/lsst/faro/measurement/PatchTableMeasurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
Expand Down Expand Up @@ -201,8 +201,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
8 changes: 4 additions & 4 deletions python/lsst/faro/measurement/TractTableMeasurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
Expand Down Expand Up @@ -193,8 +193,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)
4 changes: 2 additions & 2 deletions python/lsst/faro/measurement/VisitTableMeasurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
if outputs.measurement is not None:
butlerQC.put(outputs, outputRefs)
else:
self.log.debugf(
"Skipping measurement of {!r} on {} " "as not applicable.",
self.log.debug(
"Skipping measurement of %r on %s as not applicable.",
self,
inputRefs,
)