Adds cache pressure in logger

This commit is contained in:
Manu Mtz-Almeida 2014-07-05 19:31:26 +02:00
parent db259897f4
commit 027341c80b
1 changed files with 2 additions and 1 deletions

View File

@ -48,10 +48,11 @@ func Logger() HandlerFunc {
color = red color = red
} }
latency := time.Since(start) latency := time.Since(start)
logger.Printf("[GIN] %v |%s %3d %s| %12v | %3s %s\n", logger.Printf("[GIN] %v |%s %3d %s| %12v | %3.1f%% | %3s | %s\n",
time.Now().Format("2006/01/02 - 15:04:05"), time.Now().Format("2006/01/02 - 15:04:05"),
color, c.Writer.Status(), reset, color, c.Writer.Status(), reset,
latency, latency,
c.Engine.CacheStress()*100,
c.Req.Method, c.Req.URL.Path, c.Req.Method, c.Req.URL.Path,
) )