Mercurial Hosting > luan
diff src/org/eclipse/jetty/util/component/AbstractLifeCycle.java @ 1004:3fa54d9d19cd
better handling of BindException
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 22 Oct 2016 23:00:57 -0600 |
parents | 5dfb10ec0ca5 |
children |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/util/component/AbstractLifeCycle.java Sat Oct 22 22:24:47 2016 -0600 +++ b/src/org/eclipse/jetty/util/component/AbstractLifeCycle.java Sat Oct 22 23:00:57 2016 -0600 @@ -181,7 +181,7 @@ private void setFailed(Throwable th) { _state = __FAILED; - LOG.warn(FAILED+" " + this+": "+th,th); + LOG.warn(FAILED+" " + this+": "+th); } }