Class: Logger

Inherits:
StringIO
  • Object
show all
Includes:
LoggerModule, Singleton
Defined in:
lib/logger.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from LoggerModule

#initialize, #save, #silent, #silent=, #strip_color, #write_console

Class Method Details

.getObject



59
60
61
# File 'lib/logger.rb', line 59

def self.get
  instance
end

Instance Method Details

#write(str) ⇒ Object



63
64
65
66
67
68
69
70
# File 'lib/logger.rb', line 63

def write(str)
  str = str.to_s
  if str.encoding == Encoding::ASCII_8BIT
    str.force_encoding(Encoding::UTF_8)
  end
  super(strip_color(str))
  write_console(str, STDOUT)
end