Skip to content
Snippets Groups Projects
Commit 8388408d authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Errors go to stderr

parent baf30f32
No related branches found
No related tags found
No related merge requests found
...@@ -295,6 +295,6 @@ int main(int argc, char *argv[]) { ...@@ -295,6 +295,6 @@ int main(int argc, char *argv[]) {
Dune::derr << "Dune reported error: " << e << std::endl; Dune::derr << "Dune reported error: " << e << std::endl;
} }
catch (std::exception &e) { catch (std::exception &e) {
std::cout << "Standard exception: " << e.what() << std::endl; std::cerr << "Standard exception: " << e.what() << std::endl;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment