From 2b9f4ef5d60676cd87036631ff2c40c46f5b645f Mon Sep 17 00:00:00 2001 From: Danny Auble <da@schedmd.com> Date: Wed, 24 Aug 2011 10:52:02 -0700 Subject: [PATCH] BLUEGENE - changed from cout to cerr on a cnode failure --- src/plugins/select/bluegene/runjob_plugin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/select/bluegene/runjob_plugin.cc b/src/plugins/select/bluegene/runjob_plugin.cc index 8cbfe913b9c..e0a662afc3c 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; } } -- GitLab