class ActiveSupport::Logger::SimpleFormatter
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/active_support/logger.rbs class ActiveSupport::Logger::SimpleFormatter < Logger::Formatter def call: (String severity, Time timestamp, nil progname, String msg) -> untyped end
Simple formatter which only displays the message.
def call(severity, timestamp, progname, msg)
Experimental RBS support (using type sampling data from the type_fusion
project).
def call: (String severity, Time timestamp, nil progname, String msg) -> untyped
This signature was generated using 5 samples from 1 application.
def call(severity, timestamp, progname, msg) "#{String === msg ? msg : msg.inspect}\n" end