Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 7715 invoked from network); 21 Jan 2008 13:48:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Jan 2008 13:48:31 -0000 Received: (qmail 63085 invoked by uid 500); 21 Jan 2008 13:48:21 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 63064 invoked by uid 500); 21 Jan 2008 13:48:21 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 63054 invoked by uid 99); 21 Jan 2008 13:48:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jan 2008 05:48:21 -0800 X-ASF-Spam-Status: No, hits=-99.8 required=10.0 tests=ALL_TRUSTED,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jan 2008 13:47:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 293DD1A9832; Mon, 21 Jan 2008 05:48:02 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r613889 - /activemq/trunk/activemq-optional/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java Date: Mon, 21 Jan 2008 13:48:01 -0000 To: commits@activemq.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080121134802.293DD1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jstrachan Date: Mon Jan 21 05:48:01 2008 New Revision: 613889 URL: http://svn.apache.org/viewvc?rev=613889&view=rev Log: Lowered the logging level of empty messages returned. For background see : http://www.nabble.com/HTTP-%3A-Received-null-command-tp14997476s2354p14997476.html Modified: activemq/trunk/activemq-optional/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java Modified: activemq/trunk/activemq-optional/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-optional/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java?rev=613889&r1=613888&r2=613889&view=diff ============================================================================== --- activemq/trunk/activemq-optional/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java (original) +++ activemq/trunk/activemq-optional/src/main/java/org/apache/activemq/transport/http/HttpClientTransport.java Mon Jan 21 05:48:01 2008 @@ -128,7 +128,7 @@ 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); }