private void initJetty() throws ContainerException {
// configure JSSE properties
SSLUtil.loadJsseProperties();
// configure jetty logging
Log log = Log.instance();
log.disableLog();
Log4jSink sink = new Log4jSink();
log.add(sink);
sink.setOptions(UtilURL.fromResource("debug.properties").toExternalForm());
try {
sink.start();
} catch (Exception e) {
Debug.logWarning(e, module);