From 1ae1d9dc8f24380d54f4f3e2b8bbf9a60d3343d3 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sun, 2 Aug 2020 22:11:51 -0400 Subject: [PATCH] Apply templated write_message to mesh.cpp --- src/mesh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh.cpp b/src/mesh.cpp index 4954ca373e..82bacdcf56 100644 --- a/src/mesh.cpp +++ b/src/mesh.cpp @@ -2051,7 +2051,7 @@ void UnstructuredMesh::write(std::string base_filename) const { // add extension to the base name auto filename = base_filename + ".vtk"; - write_message("Writing unstructured mesh " + filename + "...", 5); + write_message(5, "Writing unstructured mesh {}...", filename); filename = settings::path_output + filename; // write the tetrahedral elements of the mesh only