diff --git a/custom_components/pun_sensor/__init__.py b/custom_components/pun_sensor/__init__.py index 7fd7d74..a41fba4 100644 --- a/custom_components/pun_sensor/__init__.py +++ b/custom_components/pun_sensor/__init__.py @@ -160,6 +160,7 @@ async def _async_update_data(self): DOWNLOAD_URL = 'https://www.mercatoelettrico.org/It/download/DownloadDati.aspx?val=MGP_Prezzi' # Apre la pagina per generare i cookie e i campi nascosti + _LOGGER.debug('Connessione a URL login.') async with self.session.get(LOGIN_URL) as response: soup = BeautifulSoup(await response.read(), features='html.parser') @@ -175,6 +176,7 @@ async def _async_update_data(self): } # Effettua il login (che se corretto porta alla pagina di download XML grazie al 'ReturnUrl') + _LOGGER.debug('Invio credenziali a URL login.') async with self.session.post(LOGIN_URL, data=login_payload) as response: soup = BeautifulSoup(await response.read(), features='html.parser') @@ -188,6 +190,7 @@ async def _async_update_data(self): } # Effettua il download dello ZIP con i file XML + _LOGGER.debug('Inizio download file ZIP con XML.') async with self.session.post(DOWNLOAD_URL, data=data_request_payload) as response: # Scompatta lo ZIP in memoria try: