diff --git a/libethereum/Executive.cpp b/libethereum/Executive.cpp index 5208fc8bd..cea7d21f4 100644 --- a/libethereum/Executive.cpp +++ b/libethereum/Executive.cpp @@ -68,7 +68,7 @@ bool Executive::setup(bytesConstRef _rlp) if (m_t.gas() < gasCost) { - clog << "Not enough gas to pay for the transaction: Require >" << gasCost << " Got" << m_t.gas(); + clog(StateDetail) << "Not enough gas to pay for the transaction: Require >" << gasCost << " Got" << m_t.gas(); BOOST_THROW_EXCEPTION(OutOfGas() << RequirementError((bigint)gasCost, (bigint)m_t.gas())); }