Skip to content

Commit

Permalink
WatchImporter: Reduce scan logging verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
ato committed Oct 10, 2023
1 parent 02b9fa3 commit c8a9db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/bamboo/task/WatchImporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void scanForChanges() {
scanLock.lock();
try {
for (Config.Watch watch : watches.values()) {
log.info("Scanning for changes: {}", watch.dir);
log.trace("Scanning for changes: {}", watch.dir);
try (DirectoryStream<Path> stream = Files.newDirectoryStream(watch.dir)) {
for (Path entry : stream) {
if (entry.toString().endsWith(".warc.gz.open")) {
Expand Down

0 comments on commit c8a9db0

Please sign in to comment.