Skip to content

Commit

Permalink
Improve logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed May 16, 2023
1 parent 916cd15 commit 79ccba1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,7 @@ String getUserAndHost() {
try {
hostName = InetAddress.getLocalHost().getHostName();
} catch (UnknownHostException e) {
LOGGER.error("Hostname not found. Please go to https://docs.jabref.org/ to find possible problem resolution", e);
LOGGER.info("Hostname not found. Using \"localhost\" as fallback.", e);
hostName = "localhost";
}
}
Expand Down

0 comments on commit 79ccba1

Please sign in to comment.