From f76749a9339fab774373194b21c6bcd8f77c6850 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 2 May 2017 23:33:51 +0200 Subject: [PATCH] Cleanup output --- hassio/core.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/hassio/core.py b/hassio/core.py index aabe5c8c4..a0e74fa0f 100644 --- a/hassio/core.py +++ b/hassio/core.py @@ -57,15 +57,10 @@ class HassIO(object): # hostcontrol await self.host_control.load() - _LOGGER.info( - "Connected to HostControl. Type: %s Version: %s Hostname: %s " - "Features: %s", self.host_control.type, - self.host_control.version, self.host_control.hostname, - self.host_control.features) # schedule update info tasks self.scheduler.register_task( - self.host_control.load(), RUN_UPDATE_INFO_TASKS) + self.host_control.load, RUN_UPDATE_INFO_TASKS) # rest api views self.api.register_host(self.host_control)