Class: Console::Serialized::Logger

Inherits:
Object
  • Object
show all
Defined in:
lib/console/serialized/logger.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io = $stderr, format: JSON, **options) ⇒ Logger

Returns a new instance of Logger.



30
31
32
33
34
# File 'lib/console/serialized/logger.rb', line 30

def initialize(io = $stderr, format: JSON, **options)
  @io = io
  @start = Time.now
  @format = format
end

Instance Attribute Details

#formatObject (readonly)

Returns the value of attribute format.



38
39
40
# File 'lib/console/serialized/logger.rb', line 38

def format
  @format
end

#ioObject (readonly)

Returns the value of attribute io.



36
37
38
# File 'lib/console/serialized/logger.rb', line 36

def io
  @io
end

#startObject (readonly)

Returns the value of attribute start.



37
38
39
# File 'lib/console/serialized/logger.rb', line 37

def start
  @start
end

Instance Method Details

#call(subject = nil, *arguments, severity: UNKNOWN, **options, &block) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/console/serialized/logger.rb', line 43

def call(subject = nil, *arguments, severity: UNKNOWN, **options, &block)
  record = {
    time: Time.now.iso8601,
    severity: severity,
    class: subject.class,
    oid: subject.object_id,
    pid: Process.pid,
  }
  
  if subject
    record[:subject] = subject
  end
  
  if arguments.any?
    record[:arguments] = arguments
  end
  
  if options.any?
    record[:options] = options
  end
  
  if block_given?
    if block.arity.zero?
      record[:message] = yield
    else
      buffer = StringIO.new
      yield buffer
      record[:message] = buffer.string
    end
  end
  
  @io.puts(@format.dump(record))
end

#verbose!(value = true) ⇒ Object



40
41
# File 'lib/console/serialized/logger.rb', line 40

def verbose!(value = true)
end