core.common: deprecate outdated LazyLogger alias

This commit is contained in:
Dima Gerasimov 2024-08-16 12:12:40 +03:00 committed by karlicoss
parent 614c929f95
commit 7023088d13
13 changed files with 50 additions and 30 deletions

View file

@ -13,12 +13,12 @@ from typing import TYPE_CHECKING, Any, Iterable, Type, Dict, Literal, Callable,
from decorator import decorator
from . import warnings, Res
from .common import LazyLogger
from .logging import make_logger
from .types import Json, asdict
from .error import error_to_json, extract_error_datetime
logger = LazyLogger(__name__)
logger = make_logger(__name__)
if TYPE_CHECKING: