method

format_datetime

format_datetime(time)
private

No documentation available.

# File activesupport/lib/active_support/clean_logger.rb, line 72
        def format_datetime(time)
          if @datetime_format.nil?
            time.strftime("%Y-%m-%dT%H:%M:%S.") << "%06d " % time.usec
          else
            time.strftime(@datetime_format)
          end
        end