I would add this as a comment, but I do not have enough reputations in your browser developer tools, go to the network tab and make sure that the request is even sent to the server. Most likely, it is not that everything else is registered correctly. Assuming you're in a development environment, you can also make sure your log level is in debug mode to show more descriptive information such as SQL. if you need to run the logger in a specific environment file (although it should be installed by default), try:
config.logger = Logger.new (STDOUT)
source share