[Update] テレメトリ機能の改善と不要なコードの削除

This commit is contained in:
misyaguziya
2026-01-19 21:12:16 +09:00
parent 597b0e15b0
commit 1656620ce4
8 changed files with 175 additions and 306 deletions

View File

@@ -1,6 +1,7 @@
"""
Aptabase SDK ラッパー(非同期版)
"""
import logging
from typing import Optional, Dict, Any
# Aptabase SDK のインポート
@@ -11,10 +12,12 @@ except ImportError:
class AptabaseWrapper:
APP_KEY = "A-US-2082730845"
APP_KEY = "A-US-6044063021"
def __init__(self):
self.client = None
# Suppress noisy logs from the Aptabase SDK (only CRITICAL allowed)
logging.getLogger("aptabase").setLevel(logging.CRITICAL)
async def start(self, app_version: str = "1.0.0"):
"""Aptabase クライアント開始"""