be more specific on video failures

This commit is contained in:
Niko Storni 2020-08-08 03:29:57 +02:00
parent 7e83b17b69
commit fb0e567caf

View file

@ -3,6 +3,7 @@ package ytapi
import (
"bufio"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"regexp"
@ -215,7 +216,7 @@ func getVideos(config *sdk.APIConfig, channelID string, videoIDs []string, stopC
Status: "failed",
FailureReason: err.Error(),
})
util.SendErrorToSlack("Skipping video: " + errors.FullTrace(err))
util.SendErrorToSlack(fmt.Sprintf("Skipping video (%s): %s", videoID, errors.FullTrace(err)))
if errSDK != nil {
return nil, errors.Err(errSDK)
}