Skip to content

Commit cc66498

Browse files
committed
print count of blobs in dir
1 parent 653ec47 commit cc66498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/lowtuna/jsonblob/core/BlobDataDirectoryCleaner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected boolean handleDirectory(File directory, int depth, Collection<Void> re
9797
LocalDate localDate = LocalDate.of(Integer.parseInt(dateParts[1]), Integer.parseInt(dateParts[2]), Integer.parseInt(dateParts[3]));
9898
process = localDate.isBefore(LocalDate.now().minusDays(blobAccessTtl.toDays()));
9999
if (process) {
100-
log.info("Processing {} for un-accessed blobs", directory.getAbsolutePath());
100+
log.info("Processing {} with {} blobs for un-accessed blobs", directory.getAbsolutePath(), directory.listFiles().length - 1);
101101
}
102102
}
103103

0 commit comments

Comments
 (0)