Configuring Formatters

Microsoft Enterprise Library 5.0

DropDown image DropDownHover image Collapse image Expand image CollapseAll image ExpandAll image Copy image CopyHover image

The first procedure describes how to configure the formatters. The text formatter converts a log entry into a text string. The contents of the string are determined by replacing tokens in the text formatter's Template property. The BinaryLogFormatter uses the .NET Framework BinaryFormatter to serialize and deserialize the log entry in binary format. The BinaryLogFormatter is required when using the Message Queuing (MSMQ) trace listener with the Message Queuing distributor service.

To configure formatters

  1. Click on the plus sign icon in the Log Message Formatters section of the Logging Settings configuration pane and click Add Log Message Formatters to display the list of formatters. When you select a formatter, it is added to the Log Message Formatters section where you can then set its properties.
  2. Click the expander arrow in the formatter item you wish to configure if the properties are not visible.
  3. (Optional) Change the Name property. The default name is the name of the formatter.
  4. If you are adding a text formatter and want to change the template that contains the value placeholders, click the ellipsis button () for the Template property. Make the required changes in the Template Editor dialog. You can use the Insert Token button to add tokens with the appropriate syntax. After you finish making the changes, click OK.
  5. If you are adding a Custom Formatter and want to add or edit the settings, change the list of keys and values in the Attributes property section.
  6. Repeat the procedure for each formatter you want to use.
    Note:
    The only property you can change for the binary formatter is the name.

Text Formatter Template Tokens

The Template Editor dialog allows you to insert tokens into the template that the text formatter uses to format the text of a log entry. There are tokens for a wide range of values, including all of the values included by default in a log entry such as the message, priority, timestamp, severity, and category.

There are also three special tokens named property(), dictionary(), and keyvalue() that you can use to access additional information included in the log entry, and tokens for a TAB character and a new line character combination. The default template created by the configuration tools shows examples of how you can use these function tokens. Note that property names are case-sensitive. For example, to include the Activity ID of a log entry in the message (it is not included in the default template), you must use the token {property(ActivityId)}.

Timestamp tokens can include the local: prefix, which indicates that the timestamp should be displayed using the local time. Some examples of local timestamp format codes include {timestamp(local)}, which uses the default format string and {timestamp(local:F)}, which uses the F format string that represents the full date/time pattern. For more information about date/time formatting, see Standard DateTime Format Strings on MSDN.

Extracting some values from the environment, and formatting commonly used values such as the date and time, can have an effect on performance. To mitigate this, you can use specific tokens parameters that are directly mapped to high-speed formatting implementations. There are three date/time parameters that you can use with the timestamp token to maximize performance, and you can also use the local: prefix with these if required. The three high-speed implementations are:

  • timestamp(FixedFormatISOInternationalDate), which generates a date in the format yyyy-MM-dd. For a local date/time, use timestamp(local:FixedFormatISOInternationalDate).
  • timestamp(FixedFormatUSDate), which generates a date in the format MM/dd/yyyy. For a local date/time, use timestamp(local:FixedFormatUSDate).
  • timestamp(FixedFormatTime), which generates a time in the format HH:mm:ss.fff. For a local date/time, use timestamp(local:FixedFormatTime).

There are four high-speed tokens for local context information. These tokens do not extract values from the log entry; instead, they use cached values. The four token are:

  • localAppDomain, which inserts the name of the current application domain.
  • localMachine, which inserts the name of the local computer.
  • localProcessName, which inserts the name of the current process.
  • localProcessId, which inserts the ID of the current process.