diff --git a/libraries/chain/proposal_object.cpp b/libraries/chain/proposal_object.cpp index 2186b0b6..50664097 100644 --- a/libraries/chain/proposal_object.cpp +++ b/libraries/chain/proposal_object.cpp @@ -43,7 +43,9 @@ bool proposal_object::is_authorized_to_execute(database& db) const } catch ( const fc::exception& e ) { - elog( "caught exception ${e} while checking authorization of proposal operations",("e", e.to_detail_string()) ); +#ifndef NDEBUG + wlog( "caught exception ${e} while checking authorization of proposal operations",("e", e.to_detail_string()) ); +#endif return false; } return true;