lyft_set_logging_level

Changes Lyftron logging level. The lower the level, the more detailed entries will be logged. The default level is 'Information', but you may want to change it at least temporarily for problem investigation. Note that at lowest levels (Debug and Verbose) amount of entries logged rises substantially.

Arguments

[ @logging_level ] - NVARCHAR with one of the following values, in increasing order of importance:

  • Verbose
  • Debug
  • Information
  • Warning
  • Error
  • Fatal

Example

The following example changes logging level to 'Debug'.

EXEC lyft_set_logging_level 'Debug';