From 863add6a1911a0af3e6e5e87d499c35d82b661fc Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 4 Aug 2015 10:23:21 -0700 Subject: [PATCH] Remove spurious format string from log --- src/ripple/rpc/handlers/RipplePathFind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple/rpc/handlers/RipplePathFind.cpp b/src/ripple/rpc/handlers/RipplePathFind.cpp index e11849bbb..e2fe84c27 100644 --- a/src/ripple/rpc/handlers/RipplePathFind.cpp +++ b/src/ripple/rpc/handlers/RipplePathFind.cpp @@ -232,7 +232,7 @@ Json::Value doRipplePathFind (RPC::Context& context) } WriteLog (lsDEBUG, RPCHandler) - << "ripple_path_find< %s" << jvResult; + << "ripple_path_find< " << jvResult; return jvResult; }