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();