Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Logg errors at the Google Scholar fetcher and hide them from the UI #7182

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ public Page<BibEntry> performSearchPaged(ComplexSearchQuery complexSearchQuery,
throw new FetcherException("Fetching from Google Scholar failed.",
Localization.lang("This might be caused by reaching the traffic limitation of Google Scholar (see 'Help' for details)."), e);
} else {
throw new FetcherException("Error while fetching from " + getName(), e);
// throw new FetcherException("Error while fetching from " + getName(), e);
LOGGER.warn("Error while fetching from " + getName(), e);
}
}
return new Page<>(complexQueryString, pageNumber, foundEntries);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package org.jabref.logic.importer.fileformat;

public class ACMPortalParser {
}