Skip to content

Commit

Permalink
Use msgf
Browse files Browse the repository at this point in the history
  • Loading branch information
mpetrun5 committed Jul 11, 2024
1 parent f6112a9 commit 596d289
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ func Run() error {
if err != nil {
panic(err)
}
log.Info().Msg(string(keyshare.Threshold))
log.Info().Msg(string(keyshare.Key.ID))
log.Info().Msg(string(keyshare.Key.ChainKey))
log.Info().Msgf("Threshold: %d", keyshare.Threshold)
log.Info().Msgf("ID: %s", keyshare.Key.ID)
log.Info().Msgf("ChainKey: %+v", keyshare.Key.ChainKey)
for _, peer := range keyshare.Peers {
log.Info().Msg(peer.String())
log.Info().Msgf("Peer: %s", peer.String())
}

// wait until executions are done and then stop further executions before exiting
Expand Down

0 comments on commit 596d289

Please sign in to comment.