From 2ae6a1c92988f1837e3b08ae75f26126a5d0c365 Mon Sep 17 00:00:00 2001 From: Yordan Suarez Date: Tue, 13 Sep 2022 18:48:17 -0400 Subject: [PATCH] change some debug texts --- custom_components/fpl/FplMainRegionApiClient.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/fpl/FplMainRegionApiClient.py b/custom_components/fpl/FplMainRegionApiClient.py index a6d2250..babcbb0 100644 --- a/custom_components/fpl/FplMainRegionApiClient.py +++ b/custom_components/fpl/FplMainRegionApiClient.py @@ -2,7 +2,7 @@ import json import logging -from datetime import datetime, timedelta +from datetime import datetime import aiohttp import async_timeout @@ -274,7 +274,7 @@ class FplMainRegionApiClient: async def __getDataFromEnergyService( self, account, premise, lastBilledDate ) -> dict: - _LOGGER.info("Getting data from energy service") + _LOGGER.info("Getting energy service data") date = str(lastBilledDate.strftime("%m%d%Y")) JSON = { @@ -357,7 +357,7 @@ class FplMainRegionApiClient: async def __getDataFromApplianceUsage(self, account, lastBilledDate) -> dict: """get data from appliance usage""" - _LOGGER.info("Getting data from appliance usage") + _LOGGER.info("Getting appliance usage data") JSON = {"startDate": str(lastBilledDate.strftime("%m%d%Y"))} data = {}