fix error message.

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2016-03-26 23:47:51 +08:00
parent 86654170c0
commit 3f16d711dc
1 changed files with 2 additions and 1 deletions

View File

@ -161,7 +161,8 @@ func pushNotificationIos(req RequestPushNotification) bool {
res, err := ApnsClient.Push(notification) res, err := ApnsClient.Push(notification)
if err != nil { if err != nil {
log.Println("There was an error", err) log.Println("There was an error: ", err)
return false return false
} }