# File lib/backup/syncer/cloud/base.rb, line 51
        def perform!
          Logger.message(
            "#{ syncer_name } started the syncing process:\n" +
            "\s\sConcurrency: #{ @concurrency_type } Level: #{ @concurrency_level }"
          )

          @directories.each do |directory|
            SyncContext.new(
              File.expand_path(directory), repository_object, @path
            ).sync! @mirror, @concurrency_type, @concurrency_level
          end

          Logger.message("#{ syncer_name } Syncing Complete!")
        end