Add WS support for reporting accepted transactions.

This commit is contained in:
Arthur Britto
2012-07-01 00:40:56 -07:00
parent 1804530577
commit 85919c02f3
6 changed files with 100 additions and 32 deletions

View File

@@ -135,7 +135,7 @@ public:
{
try
{
Log(lsINFO) << "Ws:: Sending '" << strMessage << "'";
// Log(lsINFO) << "Ws:: Sending '" << strMessage << "'";
cpClient->send(strMessage);
}
@@ -149,7 +149,7 @@ public:
{
Json::FastWriter jfwWriter;
Log(lsINFO) << "Ws:: Object '" << jfwWriter.write(jvObj) << "'";
// Log(lsINFO) << "Ws:: Object '" << jfwWriter.write(jvObj) << "'";
send(cpClient, jfwWriter.write(jvObj));
}