예제 #1
0
        public override void OnActionExecuting(HttpActionContext actionContext)
        {
            string controller = actionContext.ActionDescriptor.ControllerDescriptor.ControllerName;
            string action     = actionContext.ActionDescriptor.ActionName;
            string arguments  = CreateArgumentsString(actionContext);

            _logger.LogDebug($"Request, Method={actionContext.Request.Method.Method}, Url={actionContext.Request.RequestUri}, Controller={controller}, Action={action}, Arguments: {arguments}");
        }
예제 #2
0
 public MarketResearchReport Visit(FarmerDataProcessor order)
 {
     _logger.LogDebug("Market research is not yet available for Farm Data");
     return(null);
 }