Browse Source

Add the file's generatedID to logs to help in deduplication

vishnukvmd 4 năm trước cách đây
mục cha
commit
c5ca9c4886
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      lib/models/file.dart

+ 2 - 2
lib/models/file.dart

@@ -149,8 +149,8 @@ class File {
 
   @override
   String toString() {
-    return '''File(uploadedFileId: $uploadedFileID, ownerID: $ownerID, 
-      collectionID: $collectionID, updationTime: $updationTime)''';
+    return '''File(generatedID: $generatedID, uploadedFileId: $uploadedFileID, 
+      ownerID: $ownerID, collectionID: $collectionID, updationTime: $updationTime)''';
   }
 
   @override