Show the lb response in the log

This commit is contained in:
2025-10-20 11:17:23 +10:30
parent 2498ca3008
commit f1a57e5f85

View File

@@ -159,5 +159,9 @@ func lbSubmit(title, artist, album string) error {
} }
// happy path // happy path
resB := bytes.Buffer{}
io.Copy(&resB, res.Body)
log.Printf("listenbrainz OK - response: `%s`", resB.String())
return nil return nil
} }