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,11 +6,10 @@ Real Marketplace Launcher for AITBC Production
import os
import sys
import subprocess
import logging
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
from aitbc import get_logger
logger = get_logger(__name__)
def main():
"""Main real marketplace launcher function"""