class Roma::Logging::StderrWrapper
Public Class Methods
new()
click to toggle source
# File lib/roma/logging/rlogger.rb 209 def initialize 210 @log = RLogger.instance 211 end
Public Instance Methods
flush()
click to toggle source
# File lib/roma/logging/rlogger.rb 217 def flush; end
write(s)
click to toggle source
# File lib/roma/logging/rlogger.rb 213 def write(s) 214 @log.error("STDERR:#{s}") 215 end