From adfa3f795c1bd1934c7d64e4ca24a680bf0ef032 Mon Sep 17 00:00:00 2001 From: Martijn Heemels Date: Wed, 17 Jan 2018 12:20:04 +0100 Subject: [PATCH] Fix typo in anonymous usage log message. --- cmd/traefik/traefik.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/traefik/traefik.go b/cmd/traefik/traefik.go index cc8179bcb..1f8c0077f 100644 --- a/cmd/traefik/traefik.go +++ b/cmd/traefik/traefik.go @@ -261,14 +261,14 @@ func stats(globalConfiguration *configuration.GlobalConfiguration) { Stats collection is enabled. Many thanks for contributing to Traefik's improvement by allowing us to receive anonymous information from your configuration. Help us improve Traefik by leaving this feature on :) -More details on: https://docs.traefik.io/basic/#collected-data +More details on: https://docs.traefik.io/basics/#collected-data `) collect(globalConfiguration) } else { log.Info(` Stats collection is disabled. Help us improve Traefik by turning this feature on :) -More details on: https://docs.traefik.io/basic/#collected-data +More details on: https://docs.traefik.io/basics/#collected-data `) } }