Ads by Lake Quincy Media

Wiki Navigation

 
Gibraltar - Learn about the best analysis tool for NLog

Layout renderers

NLog documentation is a Wiki, which allows registered users to edit its content.
If you want to contribute, please create a user account and contact Jarek to get edit access.
(Redirected from Layout Renderers)

Contents

Use

Layout renderers are macros that are used in Layouts.

Layout Renderers

Wrapper Layout Renderers

  • ${cached}
    - Applies caching to another layout output.
  • ${filesystem-normalize}
    - Filters characters not allowed in the file names by replacing them with safe character.
  • ${json-encode}
    - Escapes output of another layout using JSON rules.
  • ${lowercase}
    - Converts the result of another layout output to lower case.
  • ${onexception}
    - Only outputs the inner layout when exception has been defined for log message.
  • ${pad}
    - Applies padding to another layout output.
  • ${replace}
    - Replaces a string in the output of another layout with another string.
  • ${rot13}
    - Decodes text "encrypted" with ROT-13.
  • ${trim-whitespace}
    - Trims the whitespace from the result of another layout renderer.
  • ${uppercase}
    - Converts the result of another layout output to upper case.
  • ${url-encode}
    - Encodes the result of another layout output for use with URLs.
  • ${when}
    - Only outputs the inner layout when the specified condition has been met.
  • ${whenEmpty}
    - Outputs alternative layout when the inner layout produces empty result.
  • ${xml-encode}
    - Converts the result of another layout output to be XML-compliant.

Passing Custom Values to a Layout

Even though the layout renderers provide many pre-defined values, you may need to pass application specific values to your Layouts. You can pass your own values in code by adding custom Properties to the event. You then retrieve the value using the ${event-context} renderer. See the documentation for the ${event-context} for an example.

Ads by Lake Quincy Media