public void MigrateRoot(Guid itemId)
        {
            var stopWatch = new Stopwatch();

            stopWatch.Start();

            _hardRockWebServiceProxy.TraverseTree(itemId, TraverseTreeItemAction);

            stopWatch.Stop();

            Sitecore.Diagnostics.Log.Info(string.Format("[FieldMigrator] Migrated Root {0} in {1}", itemId, stopWatch.Elapsed), this);
        }