提交 022ab2ba 编写于 作者: K Kohsuke Kawaguchi

also adding Jenkins

上级 345b3bb3
...@@ -250,6 +250,7 @@ public final class WebAppMain implements ServletContextListener { ...@@ -250,6 +250,7 @@ public final class WebAppMain implements ServletContextListener {
private void installLogger() { private void installLogger() {
Jenkins.logRecords = handler.getView(); Jenkins.logRecords = handler.getView();
Logger.getLogger("hudson").addHandler(handler); Logger.getLogger("hudson").addHandler(handler);
Logger.getLogger("jenkins").addHandler(handler);
} }
/** Add some metadata to a File, allowing to trace setup issues */ /** Add some metadata to a File, allowing to trace setup issues */
...@@ -336,6 +337,7 @@ public final class WebAppMain implements ServletContextListener { ...@@ -336,6 +337,7 @@ public final class WebAppMain implements ServletContextListener {
// Logger is in the system classloader, so if we don't do this // Logger is in the system classloader, so if we don't do this
// the whole web app will never be undepoyed. // the whole web app will never be undepoyed.
Logger.getLogger("hudson").removeHandler(handler); Logger.getLogger("hudson").removeHandler(handler);
Logger.getLogger("jenkins").removeHandler(handler);
} }
private static final Logger LOGGER = Logger.getLogger(WebAppMain.class.getName()); private static final Logger LOGGER = Logger.getLogger(WebAppMain.class.getName());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册