diff --git a/src/TNL/Solvers/SolverStarter_impl.h b/src/TNL/Solvers/SolverStarter_impl.h index 69b782c8f01308f935d7f23bb0dee4c61558c3f0..d2bbd81594658ca60b74426e6b4bce8d0b68f74c 100644 --- a/src/TNL/Solvers/SolverStarter_impl.h +++ b/src/TNL/Solvers/SolverStarter_impl.h @@ -305,12 +305,12 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem, } catch ( const std::exception& e ) { std::cerr << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl; - logFile << "Setting up The solver failed due to a C++ exception with description: " << e.what() << std::endl; + logFile << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl; return false; } catch (...) { std::cerr << "Setting up the solver failed due to an unknown C++ exception." << std::endl; - logFile << "Setting up The solver failed due to an unknown C++ exception." << std::endl; + logFile << "Setting up the solver failed due to an unknown C++ exception." << std::endl; throw; } } @@ -371,8 +371,8 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem, if( ! returnCode ) { if( verbose ) - std::cerr << std::endl << "The solver did not converge. " << std::endl; - logFile << "The solver did not converge. " << std::endl; + std::cerr << std::endl << "The solver did not converge." << std::endl; + logFile << "The solver did not converge." << std::endl; } /****