Make all http calls be at the same finer log level

codemagic-setup
Hank Grabowski 2022-12-29 00:35:41 -05:00
rodzic 2ac06454b4
commit e001067f37
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -540,7 +540,7 @@ class FriendicaClient {
FutureResult<String, ExecError> _postUrl(
Uri url, Map<String, dynamic> body) async {
_logger.finest('POST: $url');
_logger.finer('POST: $url');
try {
final response = await http.post(
url,
@ -566,7 +566,7 @@ class FriendicaClient {
FutureResult<String, ExecError> _deleteUrl(
Uri url, Map<String, dynamic> body) async {
_logger.finest('DELETE: $url');
_logger.finer('DELETE: $url');
try {
final response = await http.delete(
url,