Sha256: 213732cdb469d97af96f03dc18329b96707f99f99fe300fbee88bf33fd325eaf

Contents?: true

Size: 982 Bytes

Versions: 1

Compression:

Stored size: 982 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

1 entries across 1 versions & 1 rubygems

Version Path
ayadn-1.0.13 lib/ayadn/errors.rb