From e001067f3729135f8f2088545b02ab65e41e0721 Mon Sep 17 00:00:00 2001 From: Hank Grabowski Date: Thu, 29 Dec 2022 00:35:41 -0500 Subject: [PATCH] Make all http calls be at the same finer log level --- lib/friendica_client.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/friendica_client.dart b/lib/friendica_client.dart index c6e5448..1fbb4ed 100644 --- a/lib/friendica_client.dart +++ b/lib/friendica_client.dart @@ -540,7 +540,7 @@ class FriendicaClient { FutureResult _postUrl( Uri url, Map body) async { - _logger.finest('POST: $url'); + _logger.finer('POST: $url'); try { final response = await http.post( url, @@ -566,7 +566,7 @@ class FriendicaClient { FutureResult _deleteUrl( Uri url, Map body) async { - _logger.finest('DELETE: $url'); + _logger.finer('DELETE: $url'); try { final response = await http.delete( url,