chore(radar): drop per-fetch ok-bytes log line

This commit is contained in:
Graham McIntire 2026-04-18 16:22:04 -05:00
parent ced5e3d1a6
commit 1a62e51f82
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -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}} ->