diff --git a/src/ripple/app/ledger/Ledger.cpp b/src/ripple/app/ledger/Ledger.cpp index 705b1759dc..ef14bcf2a1 100644 --- a/src/ripple/app/ledger/Ledger.cpp +++ b/src/ripple/app/ledger/Ledger.cpp @@ -942,6 +942,8 @@ static bool saveValidatedLedger ( JLOG (j.warn()) << "Transaction in ledger " << seq << " affects no accounts"; + JLOG (j.warn()) + << vt.second->getTxn()->getJson(0); } *db << diff --git a/src/ripple/overlay/impl/PeerImp.cpp b/src/ripple/overlay/impl/PeerImp.cpp index 06a076a40c..d6d54232ac 100644 --- a/src/ripple/overlay/impl/PeerImp.cpp +++ b/src/ripple/overlay/impl/PeerImp.cpp @@ -442,7 +442,7 @@ PeerImp::fail(std::string const& reason) shared_from_this(), reason)); if (socket_.is_open()) { - JLOG (journal_.debug()) << reason; + JLOG (journal_.warn()) << reason; } close(); } @@ -453,7 +453,7 @@ PeerImp::fail(std::string const& name, error_code ec) assert(strand_.running_in_this_thread()); if (socket_.is_open()) { - JLOG(journal_.debug()) << name << ": " << ec.message(); + JLOG(journal_.warn()) << name << ": " << ec.message(); } close(); }