Commit Diff
Commit:
d26637f129a9b137def8d18e05603944b9badf41
Date:
Thu Dec 2 14:40:41 2021
UTC
Message
debug printf
--- main.go
+++ main.go
@@ -145,6 +145,8 @@ func pagetitle(conn *irc.Conn, line *irc.Line) {
matches := httplink.FindAllString(line.Text(), -1)
for _, link := range matches {
+ log.Println("fetching", link, "...")
+
resp, err := http.Get(link)
if err != nil {
continue
Omar Polo