fix: use get_logger instead of logging.getLogger in developer_platform_service.py
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 15s
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled

The file was using logging.getLogger without importing logging module.
Changed to use get_logger from aitbc which is already imported.
This commit is contained in:
aitbc
2026-04-25 08:22:57 +02:00
parent 69d11c3d9a
commit f1402232c5

View File

@@ -24,7 +24,7 @@ from ..domain.developer_platform import (
from ..schemas.developer_platform import BountyCreate, BountySubmissionCreate, CertificationGrant, DeveloperCreate from ..schemas.developer_platform import BountyCreate, BountySubmissionCreate, CertificationGrant, DeveloperCreate
from ..services.blockchain import get_balance, mint_tokens from ..services.blockchain import get_balance, mint_tokens
logger = logging.getLogger(__name__) logger = get_logger(__name__)
class DeveloperPlatformService: class DeveloperPlatformService: