# File lib/chef/solr/application/solr.rb, line 180
        def check_value_of_main_index_max_field_length
          if solr_main_index_max_field_length
            unless solr_main_index_max_field_length > 10000
              message  = "The maxFieldLimit for the mainIndex is set to #{solr_main_index_max_field_length}.  "
              message << "It's recommended to increase this value (in #{solr_config_file_path})."
              Chef::Log.warn message
            end
          else
            Chef::Log.warn "Unable to determine the maxFieldLimit for the mainIndex (in #{solr_config_file_path})"
          end
        end