Rewrite log file and log rotation behavior

This commit is contained in:
Vinnie Falco
2013-07-03 19:07:59 -07:00
parent 437f10b247
commit 535d510b48
9 changed files with 211 additions and 109 deletions

View File

@@ -128,7 +128,7 @@ public:
- The ledger is not advanced automatically.
- If no ledger is loaded, the default ledger with the root
account is created.
*/
*/
bool RUN_STANDALONE;
// Note: The following parameters do not relate to the UNL or trust at all
@@ -201,7 +201,11 @@ public:
*/
String const getRpcAddress ()
{
return String (m_rpcIP.c_str ()) << ":" << m_rpcPort;
String s;
s << m_rpcIP.c_str () << ":" << m_rpcPort;
return s;
}
private: