core.common: deprecate outdated LazyLogger alias

This commit is contained in:
Dima Gerasimov 2024-08-16 12:12:40 +03:00
parent e0d1dbd533
commit 524655d9f8
13 changed files with 50 additions and 30 deletions

View file

@ -8,10 +8,10 @@ from typing import Sequence, Generator, List, Union, Tuple
from contextlib import contextmanager
from pathlib import Path
from .common import LazyLogger
from .logging import make_logger
logger = LazyLogger(__name__, level="info")
logger = make_logger(__name__, level="info")
def _structure_exists(base_dir: Path, paths: Sequence[str], partial: bool = False) -> bool: