Monorepo for Tangled tangled.org
6

Configure Feed

Select the types of activity you want to include in your feed.

knotmirror: more logs for debugging

Signed-off-by: Seongmin Lee <git@boltless.me>

author
Seongmin Lee
committer
Tangled
date (May 12, 2026, 11:47 AM +0300) commit 343c005b parent 86443f69 change-id xxmzxvqm
+3
+1
knotmirror/xrpc/git_get_blob.go
··· 30 30 } 31 31 32 32 l := x.logger.With("repo", repo, "ref", ref, "path", path) 33 + l.Debug("request") 33 34 34 35 if path == "" { 35 36 writeJson(w, http.StatusBadRequest, atclient.ErrorBody{Name: "BadRequest", Message: "missing path parameter"})
+1
knotmirror/xrpc/git_get_tree.go
··· 23 23 path = r.URL.Query().Get("path") // path can be empty (defaults to root) 24 24 ) 25 25 l := x.logger.With("method", "git.getTree", "repo", repoQuery, "ref", ref) 26 + l.Debug("request") 26 27 27 28 repo, err := syntax.ParseATURI(repoQuery) 28 29 if err != nil || repo.RecordKey() == "" {
+1
knotmirror/xrpc/git_list_languages.go
··· 25 25 ref = r.URL.Query().Get("ref") 26 26 ) 27 27 l := x.logger.With("method", "git.listLanguages", "repo", repoQuery, "ref", ref) 28 + l.Debug("request") 28 29 29 30 repo, err := syntax.ParseATURI(repoQuery) 30 31 if err != nil || repo.RecordKey() == "" {