#35
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -203,7 +203,7 @@ func (app *App) ErrorLog(ctx *Context) { | ... | @@ -203,7 +203,7 @@ func (app *App) ErrorLog(ctx *Context) { |
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | func (app *App) AccessLog(ctx *Context) { | 205 | func (app *App) AccessLog(ctx *Context) { |
| 206 | BeeLogger.Printf("[ACC] host: '%s', request: '%s %s', proto: '%s', ua: %s'', remote: '%s'\n", ctx.Request.Host, ctx.Request.Method, ctx.Request.URL.Path, ctx.Request.Proto, ctx.Request.UserAgent(), ctx.Request.RemoteAddr) | 206 | BeeLogger.Printf("[ACC] host: '%s', request: '%s %s', proto: '%s', ua: '%s', remote: '%s'\n", ctx.Request.Host, ctx.Request.Method, ctx.Request.URL.Path, ctx.Request.Proto, ctx.Request.UserAgent(), ctx.Request.RemoteAddr) |
| 207 | } | 207 | } |
| 208 | 208 | ||
| 209 | func RegisterController(path string, c ControllerInterface) *App { | 209 | func RegisterController(path string, c ControllerInterface) *App { | ... | ... |
-
Please register or sign in to post a comment