Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using Logger_Exercise.Interfaces;
- namespace Logger_Exercise.Loggers
- {
- public class XmlLayout : ILayout
- {
- public string Format
- => @"<log>
- <date>{0}</date>
- <level>{1}</level>
- <message>{2}</message>
- </log>
- ";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement