From 568a7ea5f197dc3f7396280a4bb0a4d5fcda7868 Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Tue, 15 Nov 2016 09:57:26 -0700 Subject: [PATCH] Fix incorrect instructions for disabling deprecation logging (#21569) We log deprecation events at "WARN", so setting it to `info` means the events are still logged. It must be set to `error` in order to disable the logging. --- docs/reference/setup/configuration.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/setup/configuration.asciidoc b/docs/reference/setup/configuration.asciidoc index 8db4f6bae59..ac8855bf3d8 100644 --- a/docs/reference/setup/configuration.asciidoc +++ b/docs/reference/setup/configuration.asciidoc @@ -179,4 +179,4 @@ logs to roll and compress after 1 GB, and to preserve a maximum of five log files (four rolled logs, and the active log). You can disable it in the `config/log4j2.properties` file by setting the deprecation -log level to `info`. +log level to `error`.