Rinomina i logger per una migliore identificazione e gestisce le eccezioni nel bot di Telegram

This commit is contained in:
2025-10-13 00:31:56 +02:00
parent 3867654193
commit 01fbd5607c
4 changed files with 16 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ import time
import traceback
from typing import Any, Callable, Generic, TypeVar
logging = logging.getLogger(__name__)
logging = logging.getLogger("wrapper_handler")
WrapperType = TypeVar("WrapperType")
WrapperClassType = TypeVar("WrapperClassType")
OutputType = TypeVar("OutputType")