Mercurial Hosting > luan
diff src/org/eclipse/jetty/util/IO.java @ 820:8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 13 Sep 2016 23:13:06 -0600 |
parents | 3428c60d7cfc |
children | 2bb375e94f64 |
line wrap: on
line diff
--- a/src/org/eclipse/jetty/util/IO.java Fri Sep 09 17:10:47 2016 -0600 +++ b/src/org/eclipse/jetty/util/IO.java Tue Sep 13 23:13:06 2016 -0600 @@ -31,8 +31,8 @@ import java.io.StringWriter; import java.io.Writer; -import org.eclipse.jetty.util.log.Log; -import org.eclipse.jetty.util.log.Logger; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.eclipse.jetty.util.thread.QueuedThreadPool; /* ======================================================================== */ @@ -42,7 +42,7 @@ */ public class IO { - private static final Logger LOG = Log.getLogger(IO.class); + private static final Logger LOG = LoggerFactory.getLogger(IO.class); /* ------------------------------------------------------------------- */ public final static String @@ -62,7 +62,7 @@ static { try{__pool.start();} - catch(Exception e){LOG.warn(e); System.exit(1);} + catch(Exception e){LOG.warn("",e); System.exit(1);} } } @@ -103,7 +103,7 @@ } catch(IOException e) { - LOG.ignore(e); + LOG.trace("",e); try{ if (out!=null) out.close(); @@ -112,7 +112,7 @@ } catch(IOException e2) { - LOG.ignore(e2); + LOG.trace("",e2); } } } @@ -131,7 +131,7 @@ } catch(Exception e) { - LOG.warn(e); + LOG.warn("",e); } } @@ -158,7 +158,7 @@ } catch(Exception e) { - LOG.warn(e); + LOG.warn("",e); } } @@ -373,7 +373,7 @@ } catch (IOException e) { - LOG.ignore(e); + LOG.trace("",e); } } @@ -391,7 +391,7 @@ } catch (IOException e) { - LOG.ignore(e); + LOG.trace("",e); } } @@ -408,7 +408,7 @@ reader.close(); } catch (IOException e) { - LOG.ignore(e); + LOG.trace("",e); } } @@ -425,7 +425,7 @@ writer.close(); } catch (IOException e) { - LOG.ignore(e); + LOG.trace("",e); } } @@ -453,7 +453,7 @@ } catch (IOException e) { - LOG.ignore(e); + LOG.trace("",e); } }