From 95ea91c2f5a8ea0bc6d6602b348dbb5170dffe04 Mon Sep 17 00:00:00 2001 From: Sandro Elsweijer <49643115+sandro-elsweijer@users.noreply.github.com> Date: Wed, 22 Jul 2026 09:52:29 +0200 Subject: [PATCH] Change t8code log level from ESSENTIAL to PRODUCTION as mentioned in comment --- example/IO/forest/gmsh/t8_gmsh_to_vtk.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/IO/forest/gmsh/t8_gmsh_to_vtk.cxx b/example/IO/forest/gmsh/t8_gmsh_to_vtk.cxx index b2834a4ed0..172410362e 100644 --- a/example/IO/forest/gmsh/t8_gmsh_to_vtk.cxx +++ b/example/IO/forest/gmsh/t8_gmsh_to_vtk.cxx @@ -68,7 +68,7 @@ main (int argc, char **argv) // Initialize the sc library, has to happen before we initialize t8code. sc_init (sc_MPI_COMM_WORLD, 1, 1, NULL, SC_LP_ESSENTIAL); // Initialize t8code with log level SC_LP_PRODUCTION. See sc.h for more info on the log levels. - t8_init (SC_LP_ESSENTIAL); + t8_init (SC_LP_PRODUCTION); // We will use MPI_COMM_WORLD as a communicator. comm = sc_MPI_COMM_WORLD;