Why not just log to the Rails logs? You can use Rails.logger to write to the files in your app's log directory.
Example:
Rails.logger.warn "Login failed for user #{@user.login}"
Rails has different logging levels built in (debug, info, warn, error, and fatal), and these can be specified in your environment file. So to set logging in production mode to debug level:
config.log_level = :warn
debug
