Using NLog to create human readable logs with a custom Json format — {
"Level": "INFO",
"Message": "Request starting HTTP/1.1 GET http://someUrl",
"Context": "ConnectionId:0HM7A8N54SLT8..."
} Introduction Logging is a mandatory thing to have on any application, commonly used for monitoring, error detection and sometimes for audit. Logging is more than Console.WriteLine, …