Renders the date into a string. Format is "HH:mm:ss,fff".
Namespace: log4net.DateFormatterAssembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax
Parameters
- dateToFormat
- Type: System DateTime
The date to render into a string.
- writer
- Type: System.IO TextWriter
The writer to write to.
Implements
IDateFormatter FormatDate(DateTime, TextWriter)Remarks
Uses the FormatDateWithoutMillis(DateTime, StringBuilder) method to generate the time string up to the seconds and then appends the current milliseconds. The results from FormatDateWithoutMillis(DateTime, StringBuilder) are cached and FormatDateWithoutMillis(DateTime, StringBuilder) is called at most once per second.
Sub classes should override FormatDateWithoutMillis(DateTime, StringBuilder) rather than FormatDate(DateTime, TextWriter).
See Also