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:
@@ -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"""
|
||||
|
||||
Reference in New Issue
Block a user