Not found
The exact documentation you were looking for could not be found. Here is the best guess.
<<(msg)
public
Dump given message to the log device without
any formatting. If no log device exists,
return nil.
Show source
def <<(msg)
unless @logdev.nil?
@logdev.write(msg)
end
end