From 50dfffccceed0feb68c2cf325fe84b6f5d83eded Mon Sep 17 00:00:00 2001 From: Aaron Godfrey Date: Sun, 19 Apr 2020 19:32:28 -0700 Subject: [PATCH] Removed unecessary warning log --- custom_components/steam_wishlist/config_flow.py | 1 - 1 file changed, 1 deletion(-) diff --git a/custom_components/steam_wishlist/config_flow.py b/custom_components/steam_wishlist/config_flow.py index 2f447b1..dc144c1 100644 --- a/custom_components/steam_wishlist/config_flow.py +++ b/custom_components/steam_wishlist/config_flow.py @@ -30,7 +30,6 @@ async def async_get_user_url(steam_account_name: str): _LOGGER.error("Did not find user id.") raise ValueError user_id = matches[0] - _LOGGER.warning("Found user: %s", user_id) return WISHLIST_JSON_URL.format(user_id=user_id)