in src/DynamoDBSessionStateStore.cs [1047:1053]
private static void LogError(string methodName, string sessionId, object lockId, HttpContext context)
{
string message = string.Format("{0} : SessionId {1}, LockId {2}, Context {3} ", methodName, sessionId ?? "NULL",
lockId == null ? "NULL" : lockId.ToString(),
context == null ? "NULL" : "HttpContext");
_logger.Error(new Exception(message), message);
}