Migrate marketplace app to centralized aitbc package utilities

- Migrate 3 files from logging to aitbc.get_logger
- scripts/real_marketplace_launcher.py, scripts/marketplace.py, scripts/gpu_marketplace_launcher.py
- Remove logging.basicConfig() from all files
This commit is contained in:
aitbc
2026-04-25 07:12:42 +02:00
parent a58773d4d4
commit 4a649ac631
3 changed files with 9 additions and 18 deletions

View File

@@ -6,15 +6,11 @@ GPU Marketplace Launcher for AITBC Production
import os
import sys
import subprocess
import logging
from pathlib import Path
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
from aitbc import get_logger
logger = get_logger(__name__)
def main():
"""Main GPU marketplace launcher function"""