Skip to content

Commit

Permalink
chore: Add/clarify log in ISM and Hook deployer
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Jan 15, 2025
1 parent 1536ea5 commit 1ee7b8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions typescript/sdk/src/hook/EvmHookModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,8 @@ export class EvmHookModule extends HyperlaneModule<
);
}

this.logger.debug(`Deploying hook of type ${config.type}`);

switch (config.type) {
case HookType.MERKLE_TREE:
return this.deployer.deployContract(this.chain, HookType.MERKLE_TREE, [
Expand Down
2 changes: 1 addition & 1 deletion typescript/sdk/src/ism/HyperlaneIsmFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export class HyperlaneIsmFactory extends HyperlaneApp<ProxyFactoryFactories> {
const logger = this.logger.child({ destination, ismType });

logger.debug(
`Deploying ${ismType} to ${destination} ${
`Deploying ISM of type ${ismType} to ${destination} ${
origin ? `(for verifying ${origin})` : ''
}`,
);
Expand Down

0 comments on commit 1ee7b8c

Please sign in to comment.