diff --git a/src/cpp/ripple/main.cpp b/src/cpp/ripple/main.cpp index e7d0379c9..bf187ad80 100644 --- a/src/cpp/ripple/main.cpp +++ b/src/cpp/ripple/main.cpp @@ -41,9 +41,10 @@ void startServer() RPCHandler rhHandler(&theApp->getOPs()); - std::cerr << "Result: " - << rhHandler.doCommand(jvCommand, RPCHandler::ADMIN) - << std::endl; + Json::Value jvResult = rhHandler.doCommand(jvCommand, RPCHandler::ADMIN); + + if (!theConfig.QUIET) + std::cerr << "Result: " << jvResult << std::endl; } }