1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Fix upnp logger name (#23724)

* Fix upnp logger name

* Fix more loggers
This commit is contained in:
Steven Looman
2019-05-08 00:52:49 +02:00
committed by Paulus Schoutsen
parent 7181d639fd
commit 6e7a7ba4a0
7 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
"""Constants for the Hue component."""
import logging
LOGGER = logging.getLogger('.')
LOGGER = logging.getLogger(__package__)
DOMAIN = "hue"
API_NUPNP = 'https://www.meethue.com/api/nupnp'