diff --git a/homeassistant/components/http.py b/homeassistant/components/http.py index 7da4bc320f3..00b35dda8c9 100644 --- a/homeassistant/components/http.py +++ b/homeassistant/components/http.py @@ -240,7 +240,9 @@ class RequestHandler(SimpleHTTPRequestHandler): msg = "API password missing or incorrect." if require_auth and not self.authenticated: self.write_json_message(msg, HTTP_UNAUTHORIZED) - _LOGGER.warning(msg) + _LOGGER.warning('%s Source IP: %s', + msg, + self.client_address[0]) return handle_request_method(self, path_match, data)