# File lib/pilfer/logger.rb, line 16
    def write(profile_data, profile_start, description, options = {})
      profile = Pilfer::Profile.new(profile_data, profile_start)
      print_report_banner profile_start, description
      profile.each do |path, data|
        print_file_banner path, data
        print_file_source_with_profile path, data
      end
    end