# File lib/merb-slices/module.rb, line 60
      def register_slices_from_search_path!
        slice_files_from_search_path.each do |slice_file|
          absolute_path = File.expand_path(slice_file)
          Merb.logger.info!("Found slice '#{File.basename(absolute_path, '.rb')}' in search path at #{absolute_path.relative_path_from(Merb.root)}")
          Merb::Slices::Loader.load_classes(absolute_path)
        end
      end