mirror of
https://github.com/flatpak/flatpak.git
synced 2026-02-24 02:40:02 -05:00
Remove should-retry debug spew
Every http operation (even when successfull) was spewing info about whether to retry it which made it hard to read the logs.
This commit is contained in:
committed by
Alexander Larsson
parent
3522d183bc
commit
3ebcd200ca
@@ -563,14 +563,6 @@ static gboolean
|
||||
flatpak_http_should_retry_request (const GError *error,
|
||||
guint n_retries_remaining)
|
||||
{
|
||||
if (error == NULL)
|
||||
g_debug ("%s: error: unset, n_retries_remaining: %u",
|
||||
G_STRFUNC, n_retries_remaining);
|
||||
else
|
||||
g_debug ("%s: error: %u:%u %s, n_retries_remaining: %u",
|
||||
G_STRFUNC, error->domain, error->code, error->message,
|
||||
n_retries_remaining);
|
||||
|
||||
if (error == NULL || n_retries_remaining == 0)
|
||||
return FALSE;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user