Edgewall Software

Changes between Version 9 and Version 10 of TracLogging


Ignore:
Timestamp:
Nov 26, 2006, 11:21:59 PM (17 years ago)
Author:
sid
Comment:

Standardize wording and cleanup a little formatting

Legend:

Unmodified
Added
Removed
Modified
  • TracLogging

    v9 v10  
    44Trac supports logging of system messages using the standard [http://docs.python.org/lib/module-logging.html logging module] that comes with Python.
    55
    6 Logging is configured in the {{{[logging]}}} section in [wiki:TracIni#logging-section trac.ini].
     6Logging is configured in the `[logging]` section in [wiki:TracIni#logging-section trac.ini].
    77
    88== Supported Logging Methods ==
    99
    10 The log method is set using the `log_type` configuration option, which takes any of the following values:
     10The log method is set using the `log_type` option in [wiki:TracIni#logging-section trac.ini], which takes any of the following values:
     11
    1112 '''none'':: Suppress all log messages.
    1213 '''file''':: Log messages to a file, specified with the `log_file` option in [wiki:TracIni#logging-section trac.ini].
     
    1718== Log Levels ==
    1819
    19 The verbosity level of logged messages can be set using the ''log_level'' directive in [wiki:TracIni#logging-section trac.ini]. The log level defines the minimum level of urgency required for a message to be logged.
     20The verbosity level of logged messages can be set using the `log_level` option in [wiki:TracIni#logging-section trac.ini]. The log level defines the minimum level of urgency required for a message to be logged, and those levels are:
    2021
    21 The levels are:
    2222 '''CRITICAL''':: Log only the most critical (typically fatal) errors.
    2323 '''ERROR''':: Log failures, bugs and errors.