diff --git a/src/main/java/com/github/prominence/openweathermap/api/utils/RequestUtils.java b/src/main/java/com/github/prominence/openweathermap/api/utils/RequestUtils.java index 552b724..ea8cfe5 100644 --- a/src/main/java/com/github/prominence/openweathermap/api/utils/RequestUtils.java +++ b/src/main/java/com/github/prominence/openweathermap/api/utils/RequestUtils.java @@ -61,6 +61,7 @@ public final class RequestUtils { logger.error("Invalid URL: ", ex); throw new IllegalArgumentException(ex); } + logger.debug("Executing OpenWeatherMap API request: " + url); final InputStream requestInputStream = executeRequest(requestUrl); return convertInputStreamToString(requestInputStream);