Skip to content

Commit ef322c6

Browse files
committed
Change log level from debug to trace for PDF URL
1 parent fa40fd3 commit ef322c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jabref/gui/externalfiles/ImportHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ public List<BibEntry> handleStringData(String data) throws FetcherException {
403403
if ((data == null) || data.isEmpty()) {
404404
return List.of();
405405
}
406-
LOGGER.debug("Checking if URL is a PDF: {}", data);
406+
LOGGER.trace("Checking if URL is a PDF: {}", data);
407407

408408
if (URLUtil.isURL(data) && data.toLowerCase().endsWith(".pdf")) {
409409
try {

0 commit comments

Comments
 (0)