From d5662ada04ff09e67f53e30b3fff3177a09f0d34 Mon Sep 17 00:00:00 2001 From: Sandip Patel Date: Fri, 6 Dec 2019 11:07:38 +0530 Subject: [PATCH] Added log for authorization failure of proposal operations --- libraries/chain/proposal_object.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/chain/proposal_object.cpp b/libraries/chain/proposal_object.cpp index 1d5a8706..2186b0b6 100644 --- a/libraries/chain/proposal_object.cpp +++ b/libraries/chain/proposal_object.cpp @@ -43,6 +43,7 @@ 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()) ); return false; } return true;