Sha256: 3dcea875a4f526d75e6f7e4b7c845b21a1df41a8c22b84bd41a414a76a22c960

Contents?: true

Size: 1.66 KB

Versions: 4

Compression:

Stored size: 1.66 KB

Contents

# frozen_string_literals: true

require 'rbconfig'
require 'time'
require 'thread'
require 'securerandom'

module Lumberjack
  LINE_SEPARATOR = (RbConfig::CONFIG['host_os'].match(/mswin/i) ? "\r\n" : "\n")

  require File.expand_path("../lumberjack/severity.rb", __FILE__)
  require File.expand_path("../lumberjack/log_entry.rb", __FILE__)
  require File.expand_path("../lumberjack/formatter.rb", __FILE__)
  require File.expand_path("../lumberjack/device.rb", __FILE__)
  require File.expand_path("../lumberjack/logger.rb", __FILE__)
  require File.expand_path("../lumberjack/template.rb", __FILE__)
  require File.expand_path("../lumberjack/rack.rb", __FILE__)
  
  class << self
    # Define a unit of work within a block. Within the block supplied to this
    # method, calling +unit_of_work_id+ will return the same value that can
    # This can then be used for tying together log entries.
    #
    # You can specify the id for the unit of work if desired. If you don't supply
    # it, a 12 digit hexidecimal number will be automatically generated for you.
    #
    # For the common use case of treating a single web request as a unit of work, see the
    # Lumberjack::Rack::UnitOfWork class.
    def unit_of_work(id = nil)
      save_val = Thread.current[:lumberjack_logger_unit_of_work_id]
      id ||= SecureRandom.hex(6)
      Thread.current[:lumberjack_logger_unit_of_work_id] = id
      begin
        return yield
      ensure
        Thread.current[:lumberjack_logger_unit_of_work_id] = save_val
      end
    end
    
    # Get the UniqueIdentifier for the current unit of work.
    def unit_of_work_id
      Thread.current[:lumberjack_logger_unit_of_work_id] 
    end
  end
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/lumberjack-1.0.13/lib/lumberjack.rb
alimentos-alu0100945645-0.1.0 vendor/bundle/ruby/2.3.0/gems/lumberjack-1.0.13/lib/lumberjack.rb
alimentos-alu0100945645-1.0.0 vendor/bundle/ruby/2.3.0/gems/lumberjack-1.0.13/lib/lumberjack.rb
lumberjack-1.0.13 lib/lumberjack.rb