Browse Source

Improve log

Neeraj Gupta 1 year ago
parent
commit
27aaf98c4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mobile/lib/utils/file_uploader.dart

+ 1 - 1
mobile/lib/utils/file_uploader.dart

@@ -326,7 +326,7 @@ class FileUploader {
             file.path.contains(".encrypted");
       });
       if (filesToDelete.isNotEmpty) {
-        _logger.info('cleaning up state files ${filesToDelete.length}');
+        _logger.info('Deleting ${filesToDelete.length} stale upload files ');
         for (final file in filesToDelete) {
           await file.delete();
         }