Class: DevSystem::LogCommand

Inherits:
Command show all
Defined in:
lib/dev_system/sub/log/commands/log_command.rb

Class Method Summary collapse

Methods inherited from Command

#call, get_command_signatures

Methods inherited from Liza::Controller

color, inherited, on_connected

Methods inherited from Liza::Unit

const_missing, division, part, system, #system, test_class

Class Method Details

.call(args) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/dev_system/sub/log/commands/log_command.rb', line 3

def self.call args
  log :lower, "args = #{args}"

  DevBox[:log].handlers.each do |key, log_class|
    log "handler #{key} maps to #{log_class}"
  end
end