For example, if I have this callback:
after_create :notify_users
When that is called, how can I log something like "notify_users method is being called" in my log file?
I actually have several callbacks in my application. I know I can add something like puts 'notify_users method is being called'
inside the notify_users
method, but is there a way to log all callbacks automatically?