Skip to content

Commit

Permalink
fix: Making normal message not seem like an error
Browse files Browse the repository at this point in the history
  • Loading branch information
robdmoore committed Mar 21, 2023
1 parent 1685b05 commit 8187785
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/localnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ export async function getOrCreateKmdWalletAccount(
const account = (await getKmdWalletAccount(walletAccount, algod, kmd))!

Config.logger.info(
`Couldn't find existing account in Sandbox under name '${walletAccount.name}'; created account ${
account.addr
} with keys stored in KMD and funding with ${walletAccount.fundWith?.algos ?? 1000} ALGOs`,
`LocalNet account '${walletAccount.name}' doesn't yet exist; created account ${account.addr} with keys stored in KMD and funding with ${
walletAccount.fundWith?.algos ?? 1000
} ALGOs`,
)

// Fund the account from the dispenser
Expand Down

0 comments on commit 8187785

Please sign in to comment.