From: Martin Kronbichler Date: Tue, 29 Dec 2015 18:58:50 +0000 (+0100) Subject: Re-enable deallog output in multigrid tutorials. X-Git-Tag: v8.4.0-rc2~121^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b5a845d9de231f6cfd5d1e93855c455b6c6dca1;p=dealii.git Re-enable deallog output in multigrid tutorials. --- diff --git a/examples/step-16/step-16.cc b/examples/step-16/step-16.cc index d7bc1e474e..592698e958 100644 --- a/examples/step-16/step-16.cc +++ b/examples/step-16/step-16.cc @@ -659,6 +659,8 @@ int main () { using namespace Step16; + deallog.depth_console(2); + LaplaceProblem<2> laplace_problem(1); laplace_problem.run (); } diff --git a/examples/step-39/step-39.cc b/examples/step-39/step-39.cc index 4c52e86a77..b880cf5aa1 100644 --- a/examples/step-39/step-39.cc +++ b/examples/step-39/step-39.cc @@ -935,6 +935,7 @@ int main() using namespace dealii; using namespace Step39; + deallog.depth_console(2); std::ofstream logfile("deallog"); deallog.attach(logfile); FE_DGQ<2> fe1(3);