ソースを参照

Only log ActivityPub info when debugging

tags/v0.4.0^0
Matt Baer 5年前
コミット
94badbc838
1個のファイルの変更6行の追加2行の削除
  1. +6
    -2
      activitypub.go

+ 6
- 2
activitypub.go ファイルの表示

@@ -254,7 +254,9 @@ func handleFetchCollectionInbox(app *app, w http.ResponseWriter, r *http.Request
// 2) Errors are propagated to res.Deserialize call below
m["@context"] = []string{activitystreams.Namespace}
b, _ := json.Marshal(m)
log.Info("Follow: %s", b)
if debugging {
log.Info("Follow: %s", b)
}

_, followID := f.GetId()
if followID == nil {
@@ -287,7 +289,9 @@ func handleFetchCollectionInbox(app *app, w http.ResponseWriter, r *http.Request

m["@context"] = []string{activitystreams.Namespace}
b, _ := json.Marshal(m)
log.Info("Undo: %s", b)
if debugging {
log.Info("Undo: %s", b)
}

a.AppendObject(u.Raw())
_, to = u.GetActor(0)


読み込み中…
キャンセル
保存