mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-29 04:36:18 +01:00
Add logging
This commit is contained in:
parent
41f066a1a6
commit
33c60ebdff
2 changed files with 4 additions and 0 deletions
|
@ -74,6 +74,9 @@ func RepositoryInbox(ctx *context.APIContext) {
|
||||||
form := web.GetForm(ctx)
|
form := web.GetForm(ctx)
|
||||||
httpStatus, title, err := federation.ProcessLikeActivity(ctx, form, repository.ID)
|
httpStatus, title, err := federation.ProcessLikeActivity(ctx, form, repository.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Error("Status: %v", httpStatus)
|
||||||
|
log.Error("Title: %v", title)
|
||||||
|
log.Error("Error: %v", err)
|
||||||
ctx.Error(httpStatus, title, err)
|
ctx.Error(httpStatus, title, err)
|
||||||
}
|
}
|
||||||
ctx.Status(http.StatusNoContent)
|
ctx.Status(http.StatusNoContent)
|
||||||
|
|
|
@ -252,6 +252,7 @@ func SendLikeActivities(ctx context.Context, doer user.User, repoID int64) error
|
||||||
|
|
||||||
likeActivityList := make([]forgefed.ForgeLike, 0)
|
likeActivityList := make([]forgefed.ForgeLike, 0)
|
||||||
for _, followingRepo := range followingRepos {
|
for _, followingRepo := range followingRepos {
|
||||||
|
log.Info("Found following repo: %v", followingRepo)
|
||||||
target := followingRepo.URI
|
target := followingRepo.URI
|
||||||
likeActivity, err := forgefed.NewForgeLike(doer.APAPIURL(), target, time.Now())
|
likeActivity, err := forgefed.NewForgeLike(doer.APAPIURL(), target, time.Now())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue