added le-r10-certificate and removed/added some logging

This commit is contained in:
2024-06-22 16:45:43 +02:00
parent c4c882a77d
commit 999e30ab3a
5 changed files with 40 additions and 4 deletions

View File

@ -20,7 +20,7 @@ class UpdateUserIndex extends MhslApi<void> {
@override
Future<http.Response> request(Uri uri) {
var data = jsonEncode(params.toJson());
log('Updating userindex:\n $data');
log('Updating userindex: ${data.length}');
return http.post(uri, body: data);
}