Skip to content

Commit

Permalink
Merge pull request #183 from jamebal/develop
Browse files Browse the repository at this point in the history
test: 添加索引进度日志
  • Loading branch information
jamebal authored Nov 28, 2024
2 parents fc15bcd + d69ce49 commit 9723fb3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) th
if (StrUtil.isBlank(username)) {
return super.visitFile(dir, attrs);
}
processFile(dir, username);
//processFile(dir, username);
return super.preVisitDirectory(dir, attrs);
}

Expand All @@ -429,7 +429,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO
if (StrUtil.isBlank(username)) {
return super.visitFile(file, attrs);
}
processFile(file, username);
//processFile(file, username);
return super.visitFile(file, attrs);
}

Expand Down

0 comments on commit 9723fb3

Please sign in to comment.