Browse Source
Fix Trace to Tracef
Signed-off-by: Nikos Filippakis <me@nfil.dev>
pull/333/head
Nikos Filippakis
5 years ago
No known key found for this signature in database
GPG Key ID: 7110E4356101F017
1 changed files with
1 additions and
1 deletions
-
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.
|
|
|
|