diff --git a/meson.build b/meson.build index b04a79b4..1ac0084f 100644 --- a/meson.build +++ b/meson.build @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # *********************************************************************** # -project('GridFire', ['c', 'cpp'], version: 'v0.7.6rc3.1', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0') +project('GridFire', ['c', 'cpp'], version: 'v0.7.6rc3.2', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0') # Start by running the code which validates the build environment subdir('build-check') diff --git a/src/lib/engine/views/engine_defined.cpp b/src/lib/engine/views/engine_defined.cpp index 290951fb..4dade583 100644 --- a/src/lib/engine/views/engine_defined.cpp +++ b/src/lib/engine/views/engine_defined.cpp @@ -415,29 +415,6 @@ namespace gridfire::engine { } state->active_reactions.add_reaction(*reaction); } - LOG_TRACE_L3(m_logger, "DefinedEngineView built with {} active species and {} active reactions.", m_activeSpecies.size(), m_activeReactions.size()); - LOG_TRACE_L3(m_logger, "Active species: {}", [this]() -> std::string { - std::string result; - for (const auto& species : m_activeSpecies) { - result += std::string(species.name()) + ", "; - } - if (!result.empty()) { - result.pop_back(); // Remove last space - result.pop_back(); // Remove last comma - } - return result; - }()); - LOG_TRACE_L3(m_logger, "Active reactions: {}", [this]() -> std::string { - std::string result; - for (const auto& reaction : m_activeReactions) { - result += std::string(reaction->id()) + ", "; - } - if (!result.empty()) { - result.pop_back(); // Remove last space - result.pop_back(); // Remove last comma - } - return result; - }()); state->species_index_map = constructSpeciesIndexMap(ctx); state->reaction_index_map = constructReactionIndexMap(ctx); }