From 65bd0008dd268ceff00d45a3ba0cdcb481543beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20P=C3=B6schel?= Date: Fri, 5 Dec 2025 18:30:49 +0100 Subject: [PATCH 1/2] Remove leftover debugging messages --- src/Series.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Series.cpp b/src/Series.cpp index e71ae49c65..d86e55c83c 100644 --- a/src/Series.cpp +++ b/src/Series.cpp @@ -2807,10 +2807,9 @@ void Series::flushStep(bool doFlush) wAttr.changesOverSteps = Parameter::ChangesOverSteps::Yes; wAttr.name = "snapshot"; - wAttr.setResource( - std::vector{ - series.m_currentlyActiveIterations.begin(), - series.m_currentlyActiveIterations.end()}); + wAttr.setResource(std::vector{ + series.m_currentlyActiveIterations.begin(), + series.m_currentlyActiveIterations.end()}); series.m_currentlyActiveIterations.clear(); wAttr.dtype = Datatype::VEC_ULONGLONG; IOHandler()->enqueue(IOTask(&series.iterations, wAttr)); @@ -3089,8 +3088,6 @@ namespace if (envVar.has_value()) { dest = auxiliary::getEnvNum(*envVar, dest); - std::cout << "Read from env var " << *envVar << " as: " << dest - << std::endl; } if (config.json().contains(key)) { From 46b781d37eea737d2cb56912e30c670158fb1d7b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 17:32:57 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/Series.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Series.cpp b/src/Series.cpp index d86e55c83c..a1411a2dbb 100644 --- a/src/Series.cpp +++ b/src/Series.cpp @@ -2807,9 +2807,10 @@ void Series::flushStep(bool doFlush) wAttr.changesOverSteps = Parameter::ChangesOverSteps::Yes; wAttr.name = "snapshot"; - wAttr.setResource(std::vector{ - series.m_currentlyActiveIterations.begin(), - series.m_currentlyActiveIterations.end()}); + wAttr.setResource( + std::vector{ + series.m_currentlyActiveIterations.begin(), + series.m_currentlyActiveIterations.end()}); series.m_currentlyActiveIterations.clear(); wAttr.dtype = Datatype::VEC_ULONGLONG; IOHandler()->enqueue(IOTask(&series.iterations, wAttr));