hi, i have a rails question
how do i get controller action name inside the controller action?
f.ex. instead of
def create
logger.info("create")
end
to write something like
def create
logger.info(this_def_name)
end
what is a way to get this_def_name?