Class OutputTemplates
Defines output templates for Serilog logging.
Inherited Members
Namespace: Coree.NETStandard.Serilog
Assembly: Coree.NETStandard.dll
Syntax
public static class OutputTemplates
Methods
| Edit this page View SourceDefault()
Provides the standard output template.
Declaration
public static string Default()
Returns
Type | Description |
---|---|
string |
Remarks
The returned template string is "{Timestamp:HH:mm:ss.ffff} {Level:u3} | {SourceContext} | {EnvironmentUserName} | {EnvironmentName} | {Message:l}{NewLine}{Exception}".
DefaultShort()
Provides a shortened version of the output template.
Declaration
public static string DefaultShort()
Returns
Type | Description |
---|---|
string |
Remarks
The returned template string is "{Timestamp:HH:mm:ss.ffff} | {Level:u3} | {SourceContextShort} | {Message:l}{NewLine}{Exception}".
TwoLineShort()
Returns a string template for logging with timestamp, log level, context, message, and exception details.
Declaration
public static string TwoLineShort()
Returns
Type | Description |
---|---|
string | A string template that can be used for logging messages. |
Remarks
This method provides a template for logging messages with a structured format including timestamp, log level, context/source, message content, and exception details if present.