Skip to content

Commit 27802db

Browse files
authored
Import get_hacs_logger instead of getLogger (#27)
1 parent 2333bd3 commit 27802db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helpers/action.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from custom_components.hacs.base import HacsBase
1111
from custom_components.hacs.const import HACS_ACTION_GITHUB_API_HEADERS
1212
from custom_components.hacs.exceptions import HacsException
13-
from custom_components.hacs.utils.logger import getLogger
13+
from custom_components.hacs.utils.logger import get_hacs_logger
1414
from custom_components.hacs.validate.manager import ValidationManager
1515

1616
TOKEN = os.getenv("INPUT_GITHUB_TOKEN")
@@ -34,7 +34,7 @@
3434
"theme",
3535
]
3636

37-
logger = getLogger("action")
37+
logger = get_hacs_logger()
3838

3939

4040
def error(error: str):

0 commit comments

Comments
 (0)