From 26e3299cde9b795104cd4efe180ad8c2bf335674 Mon Sep 17 00:00:00 2001
From: Mikhail Svechnikov <m.svechnikov@fz-juelich.de>
Date: Thu, 24 Aug 2023 13:45:09 +0200
Subject: [PATCH] rm debug msgs

---
 Base/Axis/Scale.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/Base/Axis/Scale.cpp b/Base/Axis/Scale.cpp
index 25c19a96138..0d98b4da663 100644
--- a/Base/Axis/Scale.cpp
+++ b/Base/Axis/Scale.cpp
@@ -248,11 +248,9 @@ Scale Scale::plottableScale(std::string label) const
     ASSERT(!m_trafos.empty());
     trafo_map_t::const_iterator entry;
     if (label.empty()) {
-        std::cerr << "DEBUG A" << std::endl;
         entry = m_trafos.cbegin();
         label = entry->first;
     } else {
-        std::cerr << "DEBUG B" << std::endl;
         entry = find(label, m_trafos);
         if (entry == m_trafos.cend())
             throw std::runtime_error("Scale::plottableScale called with unknown label '" + label
-- 
GitLab