From 2f1f04864db4ee62ab66a3063f5c2ef87d0a1333 Mon Sep 17 00:00:00 2001
From: Russell Taylor <taylorrj@ornl.gov>
Date: Fri, 8 Feb 2013 14:46:23 -0500
Subject: [PATCH] Re #6547. Add line termination so the log message will show
 up.

---
 Code/Mantid/Framework/API/src/Algorithm.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Code/Mantid/Framework/API/src/Algorithm.cpp b/Code/Mantid/Framework/API/src/Algorithm.cpp
index d8327ae797d..4bcda0bd369 100644
--- a/Code/Mantid/Framework/API/src/Algorithm.cpp
+++ b/Code/Mantid/Framework/API/src/Algorithm.cpp
@@ -247,7 +247,7 @@ namespace Mantid
         }
         catch(std::runtime_error& ex)
         {
-          g_log.error() << "Error initializing " << this->name() << " algorithm. " << ex.what();
+          g_log.error() << "Error initializing " << this->name() << " algorithm: " << ex.what() << std::endl;
           throw;
         }
 
-- 
GitLab