From a09075c98c8c8444635be5faf3c1c25aae0306f0 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Thu, 8 Aug 2013 21:24:17 -0400 Subject: [PATCH] Docs: Fix tasklevel section in the logging howto. Ref #843 --- src/sphinx/Howto/logging.rst | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/sphinx/Howto/logging.rst b/src/sphinx/Howto/logging.rst index f012db71e..57e5bb0c6 100644 --- a/src/sphinx/Howto/logging.rst +++ b/src/sphinx/Howto/logging.rst @@ -154,9 +154,12 @@ For example, to set it temporarily from the sbt prompt, > set logLevel in Global := Level.Warn - - id: tasklevel - :title: Change the logging level for a specific task, configuration, or project - setting: logLevel in compile := Level.Debug +.. howto:: + :id: tasklevel + :title: Change the logging level for a specific task, configuration, or project + :type: setting + + logLevel in compile := Level.Debug The amount of logging is controlled by the `logLevel` setting, which takes values from the `Level` enumeration. Valid values are `Error`, `Warn`, `Info`, and `Debug` in order of increasing verbosity.