class KLog::LogStructure::TablePrintIo

Override table_print IO stream so that it writes into the structure

Public Class Methods

new(log_structure) click to toggle source
# File lib/k_log/log_structure.rb, line 319
def initialize(log_structure)
  @log_structure = log_structure
end

Public Instance Methods

puts(line) click to toggle source
# File lib/k_log/log_structure.rb, line 323
def puts(line)
  @log_structure.add_line(line)
end