func printResponse()

in internal/gitlab/release.go [253:260]


func printResponse(log logrus.FieldLogger, dres []byte, e error) {
	if e != nil {
		log.WithError(e).Debug("Error printing the response")
	} else {
		log.Debug("Received response:")
		fmt.Println(string(dres))
	}
}