Browse Source

Truncate log statement

vishnukvmd 3 years ago
parent
commit
e9b1b8c713
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lib/utils/delete_file_util.dart

+ 2 - 1
lib/utils/delete_file_util.dart

@@ -113,7 +113,8 @@ Future<void> deleteFilesFromRemoteOnly(
     BuildContext context, List<File> files) async {
   final dialog = createProgressDialog(context, "deleting...");
   await dialog.show();
-  _logger.info("Trying to delete files " + files.toString());
+  _logger.info("Trying to delete files " +
+      files.map((f) => f.uploadedFileID).toString());
   final updatedCollectionIDs = <int>{};
   final List<int> ids = [];
   for (final file in files) {