From 646076601216427fb76f71b45c7fdd0f315a37eb Mon Sep 17 00:00:00 2001 From: Katie Mummah Date: Wed, 18 Sep 2024 09:51:14 -0500 Subject: [PATCH] movements of resources from ready to stocks is not INFO1 importance --- CHANGELOG.rst | 1 + src/storage.cc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 17ba4f254..2a8991570 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -23,6 +23,7 @@ Since last release * Schedule Decommission in ``Reactor::Tick()`` instead of Decommission (#609) * When trades fail in Source due to packaging, send empty material instead of seg faulting (#629) +* Logging of resource moves between ResBufs in Storage is INFO4 not INFO1 (#625) **Removed:** diff --git a/src/storage.cc b/src/storage.cc index 7c65db9d7..6be703644 100644 --- a/src/storage.cc +++ b/src/storage.cc @@ -334,7 +334,7 @@ void Storage::ProcessMat_(double cap) { stocks.Push(ready.Pop(max_pop, cyclus::eps_rsrc())); } - LOG(cyclus::LEV_INFO1, "ComCnv") << "Storage " << prototype() + LOG(cyclus::LEV_INFO4, "ComCnv") << "Storage " << prototype() << " moved resources" << " from ready to stocks" << " at t= " << context()->time();