Sha256: cc30f56774a3142441ac92736c21d7da3c2b3354786f071dae95c55eece9a653

Contents?: true

Size: 983 Bytes

Versions: 6

Compression:

Stored size: 983 Bytes

Contents

# encoding: utf-8
module Ayadn
  class Errors
    def self.global_error(where, args, error)
      #elems = []
      #args.each {|arg| elems << self.detokenize(arg)} #TODO: make it work
      Logs.rec.error "--BEGIN--"
      Logs.rec.error "#{error}"
      Logs.rec.debug "LOCATION: #{where}"
      Logs.rec.debug "DATA: #{args}"
      Logs.rec.debug "STACK: #{caller}"
      Logs.rec.error "--END--"
      puts "\n(error logged in #{Settings.config[:paths][:log]}/ayadn.log)\n".color(:blue)
      #raise error
      exit
    end
    def self.error(status)
      Logs.rec.error status
    end
    def self.warn(warning)
      Logs.rec.warn warning
    end
    def self.info(msg)
      Logs.rec.info msg
    end
    def self.repost(repost, original)
      Logs.rec.info "Post #{repost} is a repost. Using original: #{original}."
    end

    private

    def self.detokenize(string)
      string.dup.to_s.gsub!(/token=[a-zA-Z0-9_-]+/, "token=XXX") unless string.nil?
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ayadn-1.2.2 lib/ayadn/errors.rb
ayadn-1.2.1 lib/ayadn/errors.rb
ayadn-1.2.0 lib/ayadn/errors.rb
ayadn-1.1.3 lib/ayadn/errors.rb
ayadn-1.1.1 lib/ayadn/errors.rb
ayadn-1.1.0 lib/ayadn/errors.rb