From db56157ed69b9577d9e1f1962d9d2bdce7f1a929 Mon Sep 17 00:00:00 2001 From: cantor Date: Tue, 4 Mar 2008 03:29:51 +0000 Subject: [PATCH] Remove extra eol from log stream. git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/trunk@469 de75baf8-a10c-0410-a50a-987c0e22f00f --- xmltooling/soap/impl/SOAPClient.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xmltooling/soap/impl/SOAPClient.cpp b/xmltooling/soap/impl/SOAPClient.cpp index 9120310..25515fb 100644 --- a/xmltooling/soap/impl/SOAPClient.cpp +++ b/xmltooling/soap/impl/SOAPClient.cpp @@ -58,7 +58,7 @@ void SOAPClient::send(const Envelope& env, const SOAPTransport::Address& addr) Category& log = Category::getInstance(XMLTOOLING_LOGCAT".SOAPClient"); if (log.isDebugEnabled()) - log.debugStream() << "marshalled envelope:" << logging::eol << env << logging::eol; + log.debugStream() << "marshalled envelope:\n" << env << logging::eol; // Serialize envelope. stringstream s; @@ -90,7 +90,7 @@ Envelope* SOAPClient::receive() Category& log = Category::getInstance(XMLTOOLING_LOGCAT".SOAPClient"); if (log.isDebugEnabled()) - log.debugStream() << "received XML:" << logging::eol << *(doc->getDocumentElement()) << logging::eol; + log.debugStream() << "received XML:\n" << *(doc->getDocumentElement()) << logging::eol; auto_ptr xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true)); janitor.release(); -- 2.1.4