mirror of https://github.com/apache/cloudstack.git
change debug to warn for unknown exceptions (#4521)
Co-authored-by: Alexandru Bagu <abagu@bsss-MacBook-Pro.local>
This commit is contained in:
parent
6718be00d0
commit
cd356c0513
|
|
@ -369,7 +369,7 @@ public class XcpServerDiscoverer extends DiscovererBase implements Discoverer, L
|
||||||
s_logger.warn("Unable to resolve the host name", e);
|
s_logger.warn("Unable to resolve the host name", e);
|
||||||
return null;
|
return null;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
s_logger.debug("other exceptions: " + e.toString(), e);
|
s_logger.warn("other exceptions: " + e.toString(), e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return resources;
|
return resources;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue