Module: Le

Defined in:
lib/le.rb,
lib/le/host.rb,
lib/le/host/http.rb

Defined Under Namespace

Modules: Host

Class Method Summary collapse

Class Method Details

.checkParams(token) ⇒ Object



34
35
36
37
38
39
# File 'lib/le.rb', line 34

def self.checkParams(token)
  # Check if the key is valid UUID format
  if (token =~ /\A(urn:uuid:)?[\da-f]{8}-([\da-f]{4}-){3}[\da-f]{12}\z/i) == nil
     puts "\nLE: It appears the LOGENTRIES_TOKEN you entered is invalid!\n"
  end
end

.new(token, options = {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/le.rb', line 7

def self.new(token, options={})

  self.checkParams(token)

  opt_local     = options[:local]     || false
  opt_debug     = options[:debug]     || false
  opt_ssl       = options[:ssl]       || false
  opt_tag       = options[:tag]       || false
  opt_log_level = options[:log_level] || Logger::DEBUG

  host = Le::Host.new(token, opt_local, opt_debug, opt_ssl)

  if defined?(ActiveSupport::TaggedLogging) &&  opt_tag
    logger = ActiveSupport::TaggedLogging.new(Logger.new(host))
  elsif defined?(ActiveSupport::Logger)
    logger = ActiveSupport::Logger.new(host)
    logger.formatter = host.formatter if host.respond_to?(:formatter)
  else
    logger = Logger.new(host)
    logger.formatter = host.formatter if host.respond_to?(:formatter)
  end

  logger.level = opt_log_level

  logger
end