Add linefeeds to signature log boundaries.
authorScott Cantor <cantor.2@osu.edu>
Tue, 20 Jul 2010 16:46:03 +0000 (16:46 +0000)
committerScott Cantor <cantor.2@osu.edu>
Tue, 20 Jul 2010 16:46:03 +0000 (16:46 +0000)
xmltooling/XMLToolingConfig.cpp

index 36294be..1d23487 100644 (file)
@@ -119,7 +119,7 @@ namespace {
             input = nullptr;
         }
         ~TXFMOutputLog() {
-            m_log.debug("----- END SIGNATURE DEBUG -----");
+            m_log.debug("\n----- END SIGNATURE DEBUG -----\n");
         }
 
            void setInput(TXFMBase *newInput) {
@@ -127,7 +127,7 @@ namespace {
                if (newInput->getOutputType() != TXFMBase::BYTE_STREAM)
                        throw XSECException(XSECException::TransformInputOutputFail, "OutputLog transform requires BYTE_STREAM input");
                keepComments = input->getCommentsStatus();
-            m_log.debug("----- BEGIN SIGNATURE DEBUG -----");
+            m_log.debug("\n----- BEGIN SIGNATURE DEBUG -----\n");
         }
 
            TXFMBase::ioType getInputType() {