Skip to content

Commit 138f151

Browse files
committed
Enhanced logging for bridge creation to include bytecode and ABI directory paths
1 parent 9b36357 commit 138f151

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/it/unipr/crosschain/Bridge.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ public Bridge(Path bytecodeDirectoryPath, Path abiDirectoryPath, Path policyPath
9797
log.warn("Cannot find ABI file: {}.", contractName);
9898
}
9999
}
100-
log.info("Created bridge {} with {} contracts.", name, contracts.size());
100+
log.info("Created bridge {} with {} contracts using bytecodes at {} and ABIs at {}.",
101+
name, contracts.size(), bytecodeDirectoryPath.toString(), abiDirectoryPath.toString());
101102

102103
if (policyPath != null)
103104
loadPolicy(policyPath);

0 commit comments

Comments
 (0)