Module: UserActionLogger
- Included in:
- BaseController, LegacyBrokerController
- Defined in:
- app/helpers/user_action_logger.rb
Constant Summary collapse
- @@action_logger =
nil
Instance Method Summary collapse
- #get_action_logger ⇒ Object
- #log_action(request_id, user_id, login, action, success = true, description = "", args = {}) ⇒ Object
Instance Method Details
#get_action_logger ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'app/helpers/user_action_logger.rb', line 5 def get_action_logger() unless @@action_logger log_file = nil if Rails.configuration.user_action_logging[:logging_enabled] log_file = Rails.configuration.user_action_logging[:log_filepath] end @@action_logger = Logger.new(log_file) unless log_file.nil? end @@action_logger end |
#log_action(request_id, user_id, login, action, success = true, description = "", args = {}) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'app/helpers/user_action_logger.rb', line 16 def log_action(request_id, user_id, login, action, success = true, description = "", args = {}) log_level = success ? Logger::DEBUG : Logger::ERROR action_logger = get_action_logger() if not action_logger.nil? result = success ? "SUCCESS" : "FAILURE" description = description.nil? ? "" : description.strip time_obj = Time.new date = time_obj.strftime("%Y-%m-%d") time = time_obj.strftime("%H:%M:%S") = "#{result} DATE=#{date} TIME=#{time} ACTION=#{action} REQ_ID=#{request_id} USER_ID=#{user_id} LOGIN=#{login}" args.each {|k,v| += " #{k}=#{v}"} action_logger.info("#{} #{description}") end # Using a block prevents the message in the block from being executed # if the log_level is lower than the one set for the logger Rails.logger.add(log_level) {"[REQ_ID=#{request_id}] ACTION=#{action} #{description}"} end |