Skip to content
This repository has been archived by the owner on May 28, 2022. It is now read-only.

Commit

Permalink
Error was too verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Mar 9, 2019
1 parent 968dbbc commit 4c7cc3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/complimentr/__init__.py
Expand Up @@ -11,7 +11,7 @@

from .const import * # pylint: disable=wildcard-import

VERSION = '0.0.1'
VERSION = '0.0.2'
_LOGGER = logging.getLogger(__name__)

# pylint: disable=unused-argument
Expand Down Expand Up @@ -45,7 +45,7 @@ async def update_data(hass):
jsondata = request.json()
hass.data[DOMAIN_DATA] = jsondata
except Exception as error: # pylint: disable=broad-except
_LOGGER.error("Could not update data - %s", error)
_LOGGER.debug("Could not update data - %s", error)


async def check_files(hass):
Expand Down

0 comments on commit 4c7cc3f

Please sign in to comment.