diff --git a/lib/microwaveprop/weather/nexrad_client.ex b/lib/microwaveprop/weather/nexrad_client.ex index f07ef6f7..403b4f0e 100644 --- a/lib/microwaveprop/weather/nexrad_client.ex +++ b/lib/microwaveprop/weather/nexrad_client.ex @@ -37,7 +37,6 @@ defmodule Microwaveprop.Weather.NexradClient do case Req.get(url, [receive_timeout: 60_000, retry: false] ++ req_opts) do {:ok, %{status: 200, body: body}} when is_binary(body) -> - Logger.info("NexradClient: ok #{byte_size(body)} bytes from #{url}") process_frame(body, rounded, points_of_interest) {:ok, %{status: status}} -> @@ -118,7 +117,6 @@ defmodule Microwaveprop.Weather.NexradClient do case Req.get(url, [receive_timeout: 60_000, retry: false] ++ req_opts) do {:ok, %{status: 200, body: body}} when is_binary(body) -> - Logger.info("NexradClient: ok #{byte_size(body)} bytes from #{url}") decode_png_to_pixels(body) {:ok, %{status: status}} ->