Browse Source

Fix Trace to Tracef

Signed-off-by: Nikos Filippakis <me@nfil.dev>
pull/333/head
Nikos Filippakis 4 years ago
parent
commit
26a4738d76
No known key found for this signature in database GPG Key ID: 7110E4356101F017
  1. 2
      clients/bot_client.go

2
clients/bot_client.go

@ -241,7 +241,7 @@ func (botClient *BotClient) VerificationMethods() []crypto.VerificationMethod {
// OnCancel is called when a SAS verification is canceled.
func (botClient *BotClient) OnCancel(cancelledByUs bool, reason string, reasonCode event.VerificationCancelCode) {
atomic.AddInt32(&botClient.ongoingVerificationCount, -1)
log.Trace("Verification cancelled with reason: %v", reason)
log.Tracef("Verification cancelled with reason: %v", reason)
}
// OnSuccess is called when a SAS verification is successful.

Loading…
Cancel
Save