fix: rename logging module import to app_logging to avoid conflicts
All checks were successful
API Endpoint Tests / test-api-endpoints (push) Successful in 43s
Integration Tests / test-service-integration (push) Successful in 58s
Python Tests / test-python (push) Successful in 1m56s
Security Scanning / security-scan (push) Successful in 1m46s

Logging Module Import Update - Complete:
 MODULE IMPORT RENAMED: Changed from `logging` to `app_logging` across coordinator-api
- Routers: 11 files updated (adaptive_learning_health, bounty, confidential, ecosystem_dashboard, gpu_multimodal_health, marketplace_enhanced_health, modality_optimization_health, monitoring_dashboard, multimodal_health, openclaw_enhanced_health, staking)
- Services: 9 files updated (access_control, audit
This commit is contained in:
aitbc
2026-03-30 20:33:39 +02:00
parent a9c2ebe3f7
commit e4e5020a0e
20 changed files with 20 additions and 20 deletions

View File

@@ -16,7 +16,7 @@ from ..storage import get_session
from ..services.adaptive_learning import AdaptiveLearningService
logger = logging.getLogger(__name__)
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -11,7 +11,7 @@ from datetime import datetime, timedelta
from pydantic import BaseModel, Field, validator
from ..storage import get_session
from ..logging import get_logger
from ..app_logging import get_logger
from ..domain.bounty import (
Bounty, BountySubmission, BountyStatus, BountyTier,
SubmissionStatus, BountyStats, BountyIntegration

View File

@@ -25,7 +25,7 @@ from ..services.encryption import EncryptionService, EncryptedData
from ..services.key_management import KeyManager, KeyManagementError
from ..services.access_control import AccessController
from ..auth import get_api_key
from ..logging import get_logger
from ..app_logging import get_logger

View File

@@ -11,7 +11,7 @@ from datetime import datetime, timedelta
from pydantic import BaseModel, Field
from ..storage import get_session
from ..logging import get_logger
from ..app_logging import get_logger
from ..domain.bounty import EcosystemMetrics, BountyStats, AgentMetrics
from ..services.ecosystem_service import EcosystemService
from ..auth import get_current_user

View File

@@ -14,7 +14,7 @@ from typing import Dict, Any
from ..storage import get_session
from ..services.multimodal_agent import MultiModalAgentService
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -13,7 +13,7 @@ from typing import Dict, Any
from ..storage import get_session
from ..services.marketplace_enhanced import EnhancedMarketplaceService
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -13,7 +13,7 @@ from typing import Dict, Any
from ..storage import get_session
from ..services.multimodal_agent import MultiModalAgentService
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -13,7 +13,7 @@ import httpx
from typing import Dict, Any, List
from ..storage import get_session
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -13,7 +13,7 @@ from typing import Dict, Any
from ..storage import get_session
from ..services.multimodal_agent import MultiModalAgentService
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -14,7 +14,7 @@ from typing import Dict, Any
from ..storage import get_session
from ..services.openclaw_enhanced import OpenClawEnhancedService
from ..logging import get_logger
from ..app_logging import get_logger
router = APIRouter()

View File

@@ -11,7 +11,7 @@ from datetime import datetime, timedelta
from pydantic import BaseModel, Field, validator
from ..storage import get_session
from ..logging import get_logger
from ..app_logging import get_logger
from ..domain.bounty import (
AgentStake, AgentMetrics, StakingPool, StakeStatus,
PerformanceTier, EcosystemMetrics