Skip to content

Commit

Permalink
moving debug to trace in MeshCollection
Browse files Browse the repository at this point in the history
  • Loading branch information
mtao committed Dec 13, 2024
1 parent e073b46 commit b2930db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit b2930db

Please sign in to comment.