Flowdock
method

msg2str

Importance_0
v2.1.0 - Show latest stable - 0 notes - Class: Logger::Formatter
msg2str(msg) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/clean_logger.rb, line 80
        def msg2str(msg)
          case msg
          when ::String
            msg
          when ::Exception
            "#{ msg.message } (#{ msg.class })\n" <<
            (msg.backtrace || []).join("\n")
          else
            msg.inspect
          end
        end
Register or log in to add new notes.