7 lines
137 B
Python
7 lines
137 B
Python
|
"""Custom logger for HACS."""
|
||
|
import logging
|
||
|
|
||
|
from ..const import PACKAGE_NAME
|
||
|
|
||
|
LOGGER: logging.Logger = logging.getLogger(PACKAGE_NAME)
|