From: Wolfgang Bangerth Date: Wed, 15 Apr 2020 19:43:52 +0000 (-0600) Subject: Remove debug output. X-Git-Tag: v9.2.0-rc1~195^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9898%2Fhead;p=dealii.git Remove debug output. The line of output printed here doesn't make reading the output any easier, and it doesn't actually print what is happening at this place: We start a new sequence of output files, but we don't start a new method (that has happened before, when we actually started using the new method). --- diff --git a/examples/step-52/step-52.cc b/examples/step-52/step-52.cc index 3e314b1ee1..14dc931a02 100644 --- a/examples/step-52/step-52.cc +++ b/examples/step-52/step-52.cc @@ -467,7 +467,6 @@ namespace Step52 static std::string pvd_filename; if (method_name_prev != method_name) { - std::cout << "Starting a new time-stepping scheme ..." << std::endl; times_and_names.clear(); method_name_prev = method_name; pvd_filename = "solution_" + method_name + ".pvd";