diff --git a/examples/custom_backend/lib/backend/api.dart b/examples/custom_backend/lib/backend/api.dart index 276f09b94..75040603b 100644 --- a/examples/custom_backend/lib/backend/api.dart +++ b/examples/custom_backend/lib/backend/api.dart @@ -89,7 +89,7 @@ abstract class Backend { ); if (response.statusCode == 200) { - print('Response body: ${response.body}'); + debugSaveToFileObject('response-body', response.body); return response.body; } else { throw Exception('Failed to send request: ${response.body}');