refactor: migrate all remaining modules to use shared aitbc.logging from aitbc-core package
- Replace `import logging` with `from aitbc.logging import get_logger` across blockchain-node scripts and coordinator-api modules - Update logger initialization from `logging.getLogger(__name__)` to `get_logger(__name__)` in 30+ files - Add production configuration validators for API keys, HMAC secret, and JWT secret in coordinator config - Enhance coordinator startup with comprehensive initialization logging
This commit is contained in:
@@ -11,8 +11,8 @@ packages = [
|
||||
python = "^3.13"
|
||||
fastapi = "^0.111.0"
|
||||
uvicorn = { extras = ["standard"], version = "^0.30.0" }
|
||||
pydantic = "^2.7.0"
|
||||
pydantic-settings = "^2.2.1"
|
||||
pydantic = ">=2.7.0"
|
||||
pydantic-settings = ">=2.2.1"
|
||||
sqlalchemy = {extras = ["asyncio"], version = "^2.0.47"}
|
||||
aiosqlite = "^0.20.0"
|
||||
sqlmodel = "^0.0.16"
|
||||
|
||||
Reference in New Issue
Block a user