319444 Two nulls are appended to log statements from ContextHanler

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2154 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Michael Gorovoy 2010-07-20 00:24:10 +00:00
parent d36051f5de
commit ce7c80c92b
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ jetty-7.2-SNAPSHOT
+ 320264 dupliate mime entry
+ 319334 Concurrent, sharable ResourceCache
+ 319370 WebAppClassLoader.Context
+ 319444 Two nulls are appended to log statements from ContextHanler$Context
+ 320073 Reconsile configuration mechanism
+ 320112 Websocket in aggregate jars
+ JETTY-1245 Do not use direct buffers with NIO SSL

View File

@ -1648,7 +1648,7 @@ public class ContextHandler extends ScopedHandler implements Attributes, Server.
*/
public void log(String msg)
{
_logger.info(msg, null, null);
_logger.info(msg);
}
/* ------------------------------------------------------------ */