From 460123f47a1fc1da99f92d94a7f99c268f2d94ec Mon Sep 17 00:00:00 2001 From: Alexey Kirpichnikov Date: Tue, 23 Aug 2016 17:24:46 +0500 Subject: [PATCH] Add more logging to Twilio voice --- twilio/twilio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twilio/twilio.go b/twilio/twilio.go index a100a74..9e76ae6 100644 --- a/twilio/twilio.go +++ b/twilio/twilio.go @@ -80,7 +80,7 @@ func (voiceSender *twilioSenderVoice) SendEvents(events notifier.EventsData, con return fmt.Errorf("Failed to make call to contact %s: %s", contact.Value, err.Error()) } - voiceSender.log.Debugf("Call queued to twilio with status: %s", twilioCall.Status) + voiceSender.log.Debugf("Call queued to twilio with status %s, callback url %s", twilioCall.Status, voiceURL) return nil }