Skip to content

Commit

Permalink
chore: Set logger level to INFO in dataset and dataset_writer modules
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoadesScholar committed Jan 10, 2025
1 parent e33353b commit 7cd0ed2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/cellmap_data/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import logging

logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)


def split_target_path(path: str) -> tuple[str, list[str]]:
Expand Down
1 change: 1 addition & 0 deletions src/cellmap_data/dataset_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import logging

logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)


def split_target_path(path: str) -> tuple[str, list[str]]:
Expand Down

0 comments on commit 7cd0ed2

Please sign in to comment.