Skip to content

Commit

Permalink
typofix: tools.manual lower loglevel for mask removal
Browse files Browse the repository at this point in the history
  • Loading branch information
torzdf committed Mar 25, 2024
1 parent 180fe97 commit 2b08b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/manual/manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ def _remove_nn_masks(self, detected_face: DetectedFace) -> None:
The detected face object to remove masks from
"""
del_masks = {m for m in detected_face.mask if m not in ("components", "extended")}
logger.info("Removing masks after landmark update: %s", del_masks)
logger.debug("Removing masks after landmark update: %s", del_masks)
for mask in del_masks:
del detected_face.mask[mask]

Expand Down

0 comments on commit 2b08b8d

Please sign in to comment.