summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/updateable/content/song.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/updateable/content/song.go b/examples/updateable/content/song.go
index 75d51ca..b14b8dd 100644
--- a/examples/updateable/content/song.go
+++ b/examples/updateable/content/song.go
@@ -136,7 +136,7 @@ func (s *Song) BeforeAcceptUpdate(res http.ResponseWriter, req *http.Request) er
// request.
func (s *Song) AfterAcceptUpdate(res http.ResponseWriter, req *http.Request) error {
addr := req.RemoteAddr
- log.Println("Song updated by:", addr)
+ log.Println("Song updated by:", addr, "with title", req.PostFormValue("title"))
return nil
}