Class: LoggerError

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



77
78
79
# File 'lib/logger.rb', line 77

def self.get
  instance
end

Instance Method Details

#write(str) ⇒ Object



81
82
83
84
85
86
87
88
# File 'lib/logger.rb', line 81

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, STDERR)
end