Skip to content

Commit 2894c9e

Browse files
committed
FileAnnotationCache logger is now on debug level instead of info
1 parent c4aed22 commit 2894c9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/jabref/logic/pdf/FileAnnotationCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ public Map<String, List<FileAnnotation>> load(BibEntry entry) throws Exception {
3939
* @return Map containing a list of annotations in a list for each file
4040
*/
4141
public Map<String, List<FileAnnotation>> getFromCache(BibEntry entry) {
42-
LOGGER.info(String.format("Loading Bibentry '%s' from cache.", entry.getField(BibEntry.KEY_FIELD).get()));
42+
LOGGER.debug(String.format("Loading Bibentry '%s' from cache.", entry.getField(BibEntry.KEY_FIELD).get()));
4343
return annotationCache.getUnchecked(entry);
4444
}
4545

4646
public void remove(BibEntry entry) {
47-
LOGGER.info(String.format("Deleted Bibentry '%s' from cache.", entry.getField(BibEntry.KEY_FIELD).get()));
47+
LOGGER.debug(String.format("Deleted Bibentry '%s' from cache.", entry.getField(BibEntry.KEY_FIELD).get()));
4848
annotationCache.invalidate(entry);
4949
}
5050
}

0 commit comments

Comments
 (0)