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 @@ -97,7 +97,11 @@ const sharedConfig = {
9797 torii : {
9898 address : "0.0.0.0:8080" ,
9999 } ,
100- logger : { format : "pretty" , filter : "iroha_core=debug" } ,
100+ logger : {
101+ format : "pretty" ,
102+ // TODO: in iroha, change "WASM" module to something with "iroha_" prefix?
103+ filter : "iroha_core=debug,WASM=trace" ,
104+ } ,
101105} ;
102106
103107function 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