*) more error logging

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2974 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 19 years ago
parent 73552db482
commit 58d79a9ac1

@ -244,6 +244,9 @@ public final class httpdSoapHandler extends httpdAbstractHandler implements http
} catch (Exception e) {
this.theLogger.logSevere("Unable to initialize soap engine",e);
throw e;
} catch (Error e) {
this.theLogger.logSevere("Unable to initialize soap engine",e);
throw e;
}
try {
@ -261,6 +264,9 @@ public final class httpdSoapHandler extends httpdAbstractHandler implements http
} catch (Exception e) {
this.theLogger.logSevere("Unable to deploy default soap services.",e);
throw e;
} catch (Error e) {
this.theLogger.logSevere("Unable to deploy default soap services.",e);
throw e;
}
}

Loading…
Cancel
Save