change debug to warn for unknown exceptions (#4521)

Co-authored-by: Alexandru Bagu <abagu@bsss-MacBook-Pro.local>
This commit is contained in:
Alexandru Bagu 2020-12-09 13:24:54 +02:00 committed by GitHub
parent 6718be00d0
commit cd356c0513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ public class XcpServerDiscoverer extends DiscovererBase implements Discoverer, L
s_logger.warn("Unable to resolve the host name", e);
return null;
} catch (Exception e) {
s_logger.debug("other exceptions: " + e.toString(), e);
s_logger.warn("other exceptions: " + e.toString(), e);
return null;
}
return resources;