Fix typo in anonymous usage log message.

This commit is contained in:
Martijn Heemels 2018-01-17 12:20:04 +01:00 committed by Traefiker
parent fe426f6fb2
commit adfa3f795c

View file

@ -261,14 +261,14 @@ func stats(globalConfiguration *configuration.GlobalConfiguration) {
Stats collection is enabled. Stats collection is enabled.
Many thanks for contributing to Traefik's improvement by allowing us to receive anonymous information from your configuration. 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 :) 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) collect(globalConfiguration)
} else { } else {
log.Info(` log.Info(`
Stats collection is disabled. Stats collection is disabled.
Help us improve Traefik by turning this feature on :) 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
`) `)
} }
} }