diff --git a/scm-webapp/src/main/java/sonia/scm/plugin/PluginCenterLoader.java b/scm-webapp/src/main/java/sonia/scm/plugin/PluginCenterLoader.java index 2b0928891e..bd294cbd75 100644 --- a/scm-webapp/src/main/java/sonia/scm/plugin/PluginCenterLoader.java +++ b/scm-webapp/src/main/java/sonia/scm/plugin/PluginCenterLoader.java @@ -33,8 +33,8 @@ class PluginCenterLoader { LOG.info("fetch plugins from {}", url); PluginCenterDto pluginCenterDto = client.get(url).request().contentFromJson(PluginCenterDto.class); return mapper.map(pluginCenterDto); - } catch (IOException ex) { - LOG.error("failed to load plugins from plugin center, returning empty list"); + } catch (Exception ex) { + LOG.error("failed to load plugins from plugin center, returning empty list", ex); return Collections.emptySet(); } }