Lowered the logging level of empty messages returned. For background see : http://www.nabble.com/HTTP-%3A-Received-null-command-tp14997476s2354p14997476.html

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@613889 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2008-01-21 13:48:01 +00:00
parent 01cef910db
commit b16d55f79a
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public class HttpClientTransport extends HttpTransportSupport {
DataInputStream stream = new DataInputStream(httpMethod.getResponseBodyAsStream());
Object command = (Object)getTextWireFormat().unmarshal(stream);
if (command == null) {
LOG.warn("Received null command from url: " + remoteUrl);
LOG.debug("Received null command from url: " + remoteUrl);
} else {
doConsume(command);
}