class ActionSmser::Logger

Public Class Methods

error(str) click to toggle source
# File lib/action_smser.rb, line 28
def self.error(str)
  Rails.logger.error("ActionSmser: #{str}")
end
info(str) click to toggle source
# File lib/action_smser.rb, line 22
def self.info(str)
  Rails.logger.info("ActionSmser: #{str}")
end
warn(str) click to toggle source
# File lib/action_smser.rb, line 25
def self.warn(str)
  Rails.logger.warn("ActionSmser: #{str}")
end