diff --git a/examples/realtime-advanced/routes.go b/examples/realtime-advanced/routes.go index 71c2ceb0..a582e4c5 100644 --- a/examples/realtime-advanced/routes.go +++ b/examples/realtime-advanced/routes.go @@ -13,12 +13,10 @@ import ( func rateLimit(c *gin.Context) { ip := c.ClientIP() value := ips.Add(ip, 1) - if int(value)%200 == 0 { - log.Printf("ip: %s, count: %f\n", ip, value) - } + log.Printf("ip: %s, count: %f\n", ip, value) if value > 300 { if int(value)%200 == 0 { - log.Printf("ip blocked", ip, value) + log.Println("ip blocked") } c.AbortWithStatus(503) }