method

normalize_sources

normalize_sources(sources)
private

No documentation available.

# File activesupport/lib/active_support/logger.rb, line 47
      def self.normalize_sources(sources)
        sources.map do |source|
          source = source.path if source.respond_to?(:path)
          source = File.realpath(source) if source.is_a?(String) && File.exist?(source)
          source
        end
      end