diff --git a/src/plugins/select/bluegene/runjob_plugin.cc b/src/plugins/select/bluegene/runjob_plugin.cc index 8cbfe913b9c43186ba2f4fcc99614f8e562704f1..e0a662afc3c9ef4db0712a65251e8c8fb1483faf 100644 --- a/src/plugins/select/bluegene/runjob_plugin.cc +++ b/src/plugins/select/bluegene/runjob_plugin.cc @@ -292,9 +292,9 @@ void Plugin::execute(const bgsched::runjob::Terminated& data) /* FIXME: We sould tell the slurmctld about this 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) { - std::cout << i.location() << ": " + std::cerr << i.location() << ": " << i.coordinates() << std::endl; } }