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