diff --git a/routing/routes.go b/routing/routes.go index f51616b91bb1225dcfcd6eeeb1a48f07b7cacf95..f27a98b84404eeae07ec4f433c7da12ae800fe6e 100644 --- a/routing/routes.go +++ b/routing/routes.go @@ -27,9 +27,9 @@ func SetRoutes( router *f.App, config *configuration.Config, store state.Store, if config.LogLevel == "debug" { router.All( "*", func( c *f.Ctx ) error { - log.Printf( "%s %s mime:%s agent:%s", - c.Path(), + log.Printf( "%s %s mime:%s agent:%s", c.Method(), + c.Path(), c.Get( f.HeaderContentType ), c.Get( f.HeaderUserAgent ), )