From b2930dbf462e6945e5a4d4665f867107f4755d0e Mon Sep 17 00:00:00 2001 From: Michael Tao Date: Fri, 13 Dec 2024 14:47:01 -0500 Subject: [PATCH] moving debug to trace in MeshCollection --- .../src/wmtk/components/multimesh/MeshCollection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/multimesh/src/wmtk/components/multimesh/MeshCollection.cpp b/components/multimesh/src/wmtk/components/multimesh/MeshCollection.cpp index 47268c3a91..4bbfdfb9c5 100644 --- a/components/multimesh/src/wmtk/components/multimesh/MeshCollection.cpp +++ b/components/multimesh/src/wmtk/components/multimesh/MeshCollection.cpp @@ -61,7 +61,7 @@ const NamedMultiMesh& MeshCollection::get_named_multimesh(const std::string_view #endif const auto nmm_name = *split.begin(); if (nmm_name.empty() && m_meshes.size() == 1) { - wmtk::logger().debug("MeshCollection accessed with an empty name, but has only 1 mesh so " + wmtk::logger().trace("MeshCollection accessed with an empty name, but has only 1 mesh so " "assuming that is the right mesh"); return *m_meshes.begin()->second; } @@ -91,7 +91,7 @@ NamedMultiMesh& MeshCollection::get_named_multimesh(const std::string_view& path #endif const auto nmm_name = *split.begin(); if (nmm_name.empty() && m_meshes.size() == 1) { - wmtk::logger().debug("MeshCollection accessed with an empty name, but has only 1 mesh so " + wmtk::logger().trace("MeshCollection accessed with an empty name, but has only 1 mesh so " "assuming that is the right mesh"); return *m_meshes.begin()->second; }