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, #silence, #silent, #silent=, #strip_color, #write_console

Class Method Details

.getObject



91
92
93
# File 'lib/logger.rb', line 91

def self.get
  instance
end

Instance Method Details

#write(str) ⇒ Object



95
96
97
98
99
100
101
102
# File 'lib/logger.rb', line 95

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