Skip to content
Merged
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 @@ -235,7 +235,7 @@ public static String getPrimaryDomain(String host) {
try {
return InternetDomainName.from(host).topPrivateDomain().toString();
} catch (Exception exception) {
LOGGER.error("Error while extracting the primary domain from the host {} ", host, exception);
LOGGER.debug("Error while extracting the primary domain from the host {} ", host, exception);
return host;
}
}
Expand Down