Removed excessive logs

This commit is contained in:
Imran Remtulla
2023-09-23 14:02:55 -04:00
parent 94ac744f41
commit 7789e3f3a7

View File

@@ -1119,7 +1119,6 @@ class AppsProvider with ChangeNotifier {
logs.add('Skipping auto-export as dir is not set.'); logs.add('Skipping auto-export as dir is not set.');
return null; return null;
} }
logs.add('Started auto-export.');
var files = await saf var files = await saf
.listFiles(exportDir, columns: [saf.DocumentFileColumn.id]) .listFiles(exportDir, columns: [saf.DocumentFileColumn.id])
.where((f) => f.uri.pathSegments.last.endsWith('-auto.json')) .where((f) => f.uri.pathSegments.last.endsWith('-auto.json'))
@@ -1128,7 +1127,6 @@ class AppsProvider with ChangeNotifier {
for (var f in files) { for (var f in files) {
saf.delete(f.uri); saf.delete(f.uri);
} }
logs.add('Previous auto-export deleted.');
} }
} }
if (exportDir == null || pickOnly) { if (exportDir == null || pickOnly) {