From 21fc1c6e6c78c719cac0b469776d4f489fa9930c Mon Sep 17 00:00:00 2001 From: Evgeniy Kulikov Date: Tue, 12 May 2020 11:19:07 +0300 Subject: [PATCH] log: fix routes in log message --- app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.go b/app.go index 23d1860..e5ae490 100644 --- a/app.go +++ b/app.go @@ -188,13 +188,13 @@ func (a *app) Serve(ctx context.Context) { // enable metrics if a.cfg.GetBool("metrics") { - a.log.Info("enabled /metrics") + a.log.Info("enabled /metrics/") attachMetrics(r, a.wlog) } // enable pprof if a.cfg.GetBool("pprof") { - a.log.Info("enabled /debug/pprof") + a.log.Info("enabled /debug/pprof/") attachProfiler(r) }