mirror of
https://github.com/home-assistant/core.git
synced 2025-07-10 06:47:09 +00:00
Change some warnings to info (#10386)
This commit is contained in:
parent
e1d1cf76ca
commit
92fe9aadc8
@ -136,7 +136,7 @@ class Config(object):
|
|||||||
self.host_ip_addr = conf.get(CONF_HOST_IP)
|
self.host_ip_addr = conf.get(CONF_HOST_IP)
|
||||||
if self.host_ip_addr is None:
|
if self.host_ip_addr is None:
|
||||||
self.host_ip_addr = util.get_local_ip()
|
self.host_ip_addr = util.get_local_ip()
|
||||||
_LOGGER.warning(
|
_LOGGER.info(
|
||||||
"Listen IP address not specified, auto-detected address is %s",
|
"Listen IP address not specified, auto-detected address is %s",
|
||||||
self.host_ip_addr)
|
self.host_ip_addr)
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ class Config(object):
|
|||||||
self.listen_port = conf.get(CONF_LISTEN_PORT)
|
self.listen_port = conf.get(CONF_LISTEN_PORT)
|
||||||
if not isinstance(self.listen_port, int):
|
if not isinstance(self.listen_port, int):
|
||||||
self.listen_port = DEFAULT_LISTEN_PORT
|
self.listen_port = DEFAULT_LISTEN_PORT
|
||||||
_LOGGER.warning(
|
_LOGGER.info(
|
||||||
"Listen port not specified, defaulting to %s",
|
"Listen port not specified, defaulting to %s",
|
||||||
self.listen_port)
|
self.listen_port)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user