Skip to content

Commit

Permalink
remove too wordy debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofelder committed Feb 6, 2024
1 parent 06de72c commit 68ccb12
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions cellfinder/core/detect/filters/volume/volume_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ def get_results(self) -> List[Cell]:
Cell.UNKNOWN,
)
)
logger.debug("Found cell < max_cell_volume.")
else:
if cell_volume < self.max_cluster_size:
try:
Expand All @@ -183,7 +182,6 @@ def get_results(self) -> List[Cell]:
Cell.UNKNOWN,
)
)
logger.debug("Found cell < max_cluster_size.")
else:
cell_centre = get_structure_centre(cell_points)
cells.append(
Expand All @@ -196,7 +194,6 @@ def get_results(self) -> List[Cell]:
Cell.ARTIFACT,
)
)
logger.debug("Found artifact cell.")

logger.debug("Finished splitting cell clusters.")
return cells
Expand Down

0 comments on commit 68ccb12

Please sign in to comment.