IsraelHiking.DataAccess.Logger.Log C# (CSharp) Method

Log() public method

public Log ( System.Web.Http.ExceptionHandling.ExceptionLoggerContext context ) : void
context System.Web.Http.ExceptionHandling.ExceptionLoggerContext
return void
        public override void Log(ExceptionLoggerContext context)
        {
            _log.Error(context.Exception.ToString());
            base.Log(context);
        }
    }