Build branch openpipeline_spatial/update-spatial-versions with version update-spatial-versions to openpipeline_spatial on branch update-spatial-versions (532e644)

Build pipeline: vsh-ci-build-template-k65s9

Source commit: 532e64485a

Source message: update spatialdata versions
This commit is contained in:
CI
2025-10-30 13:21:10 +00:00
commit 78da099d22
432 changed files with 230222 additions and 0 deletions

12
src/utils/setup_logger.py Normal file
View File

@@ -0,0 +1,12 @@
def setup_logger():
import logging
from sys import stdout
logger = logging.getLogger()
logger.setLevel(logging.INFO)
console_handler = logging.StreamHandler(stdout)
logFormatter = logging.Formatter("%(asctime)s %(levelname)-8s %(message)s")
console_handler.setFormatter(logFormatter)
logger.addHandler(console_handler)
return logger