From 6ad33f532a858cb69e441cc28812a1d1ff0ff85c Mon Sep 17 00:00:00 2001
From: Dan Nixon <dan@dan-nixon.com>
Date: Fri, 6 Feb 2015 12:20:36 +0000
Subject: [PATCH] Clean up logging output

Refs #11031
---
 .../Framework/Algorithms/src/MonteCarloAbsorption.cpp      | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/Code/Mantid/Framework/Algorithms/src/MonteCarloAbsorption.cpp b/Code/Mantid/Framework/Algorithms/src/MonteCarloAbsorption.cpp
index e7b5eea7591..9a971496337 100644
--- a/Code/Mantid/Framework/Algorithms/src/MonteCarloAbsorption.cpp
+++ b/Code/Mantid/Framework/Algorithms/src/MonteCarloAbsorption.cpp
@@ -452,14 +452,11 @@ void MonteCarloAbsorption::initCaches() {
 
   m_numVolumeElements = m_blocks.size();
   g_log.debug() << "Sample + container divided into " << m_numVolumeElements
-                << " blocks.";
+                << " blocks.\n";
   if (m_numVolumeElements == 0) {
-    g_log.error() << "No blocks intersect with the sample + container.\n";
     throw std::runtime_error("No intersection with sample + container.");
   }
-  if (m_numVolumeElements == numPossibleVolElements)
-    g_log.debug("\n");
-  else
+  if (m_numVolumeElements != numPossibleVolElements)
     g_log.debug()
         << " Skipped " << (numPossibleVolElements - m_numVolumeElements)
         << " blocks that do not intersect with the sample + container\n";
-- 
GitLab