diff --git a/routing/routes.go b/routing/routes.go
index 72ebb067fe2a42156651e1415b1f24090a9e23bb..f1439c40275f0af90c9457d97eb7cdff1229af93 100644
--- a/routing/routes.go
+++ b/routing/routes.go
@@ -35,7 +35,7 @@ func SetRoutes( router *f.App, config *configuration.Config, store state.Store,
             log.Printf( "%s %s  mime:%s  agent:%s",
                 c.Method(),
                 c.Path(),
-                c.Get( f.HeaderContentType ),
+                c.Get( f.HeaderContentType, c.Get( f.HeaderAccept, "" ) ),
                 c.Get( f.HeaderUserAgent ),
             )
             return c.Next()