Skip to content

Commit

Permalink
Use logger.getLogger() instead of direct instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
waxlamp committed Feb 2, 2024
1 parent 0e6b431 commit c1758fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dandiapi/zarr/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if TYPE_CHECKING:
from pathlib import Path

logger = logging.Logger(name=__name__)
logger = logging.getLogger(name=__name__)


# The status of the zarr ingestion (checksums, size, file count)
Expand Down

0 comments on commit c1758fc

Please sign in to comment.