all repos — honk @ c73cedfe49b41428737f428a50241cfc72337a6e

my fork of honk

add some logging so i can see the magic happen
Ted Unangst tedu@tedunangst.com
Mon, 11 Nov 2019 12:56:37 -0500
commit

c73cedfe49b41428737f428a50241cfc72337a6e

parent

d9e8d6cbe1753f22527f9914148ce7af1bd6601a

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M activity.goactivity.go

@@ -276,6 +276,7 @@ var info string

row := stmtGetXonker.QueryRow(ident, "boxes") err := row.Scan(&info) if err != nil { + log.Printf("need to get boxes for %s", ident) j, err := GetJunk(ident) if err != nil { log.Printf("error getting boxes: %s", err)
M fun.gofun.go

@@ -498,6 +498,7 @@ row := stmtGetXonker.QueryRow(xid, "handle")

var handle string err := row.Scan(&handle) if err != nil { + log.Printf("need to get a handle: %s", xid) info, err := investigate(xid) if err != nil { m := re_unurl.FindStringSubmatch(xid)