File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11use std:: { ops:: Deref , str:: FromStr , sync:: Arc } ;
22
33use color_eyre:: eyre:: eyre;
4+ use itertools:: Itertools ;
45use move_core_types:: account_address:: AccountAddress ;
56use move_trace_format:: { format:: MoveTraceBuilder , interface:: Tracer } ;
67use move_vm_runtime:: move_vm:: MoveVM ;
@@ -273,8 +274,16 @@ where
273274 let ( mut modules, dependencies) = project. into_deployment ( ) ;
274275
275276 debug ! (
276- "Deploying package with original id {} and dependencies {:?}" ,
277- package_id, dependencies
277+ "Deploying package with original id {} and dependencies {:?}, modules are [{}]" ,
278+ package_id,
279+ dependencies,
280+ modules
281+ . iter( )
282+ . map( |v| {
283+ let id = v. self_id( ) ;
284+ format!( "{}:{}" , id. address( ) . to_string( ) , id. name( ) . to_string( ) )
285+ } )
286+ . join( "," )
278287 ) ;
279288 // rebase to zero address as sui publish requires
280289 // for it in modules.iter_mut() {
You can’t perform that action at this time.
0 commit comments