class RecipeController < ApplicationController
  def list
    APPLOG.info("Starting Recipe List Method")
    @category = params['category']
    @recipes = Recipe.find_all
    APPLOG.debug(@recipes.inspect)
    APPLOG.info("Leaving Recipe List Method")
  end
end