diff --git a/profiles/killbill/src/main/webapp/WEB-INF/web.xml b/profiles/killbill/src/main/webapp/WEB-INF/web.xml
index 43dda36..12e57ed 100644
--- a/profiles/killbill/src/main/webapp/WEB-INF/web.xml
+++ b/profiles/killbill/src/main/webapp/WEB-INF/web.xml
@@ -53,6 +53,13 @@
<filter-name>guiceFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
+
+ <context-param>
+ <!-- We want to make sure the Logback shutdown happens last -->
+ <param-name>logbackDisableServletContainerInitializer</param-name>
+ <param-value>true</param-value>
+ </context-param>
+
<listener>
<!-- Jersey insists on using java.util.logging (JUL) -->
<listener-class>org.killbill.commons.skeleton.listeners.JULServletContextListener</listener-class>
diff --git a/profiles/killpay/src/main/webapp/WEB-INF/web.xml b/profiles/killpay/src/main/webapp/WEB-INF/web.xml
index 61f297d..e73a20c 100644
--- a/profiles/killpay/src/main/webapp/WEB-INF/web.xml
+++ b/profiles/killpay/src/main/webapp/WEB-INF/web.xml
@@ -52,6 +52,13 @@
<filter-name>guiceFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
+
+ <context-param>
+ <!-- We want to make sure the Logback shutdown happens last -->
+ <param-name>logbackDisableServletContainerInitializer</param-name>
+ <param-value>true</param-value>
+ </context-param>
+
<listener>
<!-- Jersey insists on using java.util.logging (JUL) -->
<listener-class>org.killbill.commons.skeleton.listeners.JULServletContextListener</listener-class>