File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,11 @@ const sharedConfig = {
9696 torii : {
9797 address : "0.0.0.0:8080" ,
9898 } ,
99- logger : { format : "pretty" , filter : "iroha_core=debug" } ,
99+ logger : {
100+ format : "pretty" ,
101+ // TODO: in iroha, change "WASM" module to something with "iroha_" prefix?
102+ filter : "iroha_core=debug,WASM=trace" ,
103+ } ,
100104} ;
101105
102106function chainToStr ( chain : ChainId ) : string {
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ struct HubChainTransferPayload {
130130
131131#[ iroha_trigger:: main]
132132fn main ( host : Iroha , ctx : Context ) {
133- main_result ( host, ctx) . unwrap ( ) ;
133+ main_result ( host, ctx) . dbg_unwrap ( ) ;
134134}
135135
136136fn main_result ( host : Iroha , ctx : Context ) -> Result < ( ) > {
You can’t perform that action at this time.
0 commit comments