Browse Source

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.
Lee Hinman 9 years ago
parent
commit
568a7ea5f1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/setup/configuration.asciidoc

+ 1 - 1
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`.