= private = protected
<<(msg)
Dump given message to the log device without any formatting. If no log device exists, return nil.
# File lib/logger.rb, line 481 def <<(msg) unless @logdev.nil? @logdev.write(msg) end end