repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
28ee249
parent
b266bd5
author
Eric Bower
date
2024-10-03 23:10:00 -0400 EDT
fix(pgs): log
1 files changed,  +2, -2
M pgs/api.go
+2, -2
 1@@ -375,8 +375,8 @@ func ServeAsset(fname string, opts *storage.ImgProcessOpts, fromImgs bool, hasPe
 2 	logger := ologger.With(
 3 		"subdomain", subdomain,
 4 		"filename", fname,
 5-		"url", r.URL,
 6-		"host", r.Host,
 7+		"url", r.URL.Path,
 8+		"host", r.URL.Host,
 9 	)
10 
11 	props, err := getProjectFromSubdomain(subdomain)