Skip to content
Snippets Groups Projects
Commit 2b9f4ef5 authored by Danny Auble's avatar Danny Auble
Browse files

BLUEGENE - changed from cout to cerr on a cnode failure

parent 314c42de
No related branches found
No related tags found
No related merge requests found
...@@ -292,9 +292,9 @@ void Plugin::execute(const bgsched::runjob::Terminated& data) ...@@ -292,9 +292,9 @@ void Plugin::execute(const bgsched::runjob::Terminated& data)
/* FIXME: We sould tell the slurmctld about this /* FIXME: We sould tell the slurmctld about this
instead of just printing it out. instead of just printing it out.
*/ */
std::cout << nodes.size() << " failed nodes" << std::endl; std::cerr << nodes.size() << " failed nodes" << std::endl;
BOOST_FOREACH(const bgsched::runjob::Node& i, nodes) { BOOST_FOREACH(const bgsched::runjob::Node& i, nodes) {
std::cout << i.location() << ": " std::cerr << i.location() << ": "
<< i.coordinates() << std::endl; << i.coordinates() << std::endl;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment