273f935
diff --git a/mash/metadata.py b/mash/metadata.py
273f935
index 56bb377..b381833 100644
273f935
--- a/mash/metadata.py
273f935
+++ b/mash/metadata.py
273f935
@@ -113,21 +113,26 @@ class MetadataNew:
273f935
                 return True
273f935
 
273f935
         def _matches(file, list):
273f935
+            self.logger.info("Checking drpm %s" % (file,))
273f935
             hdr = rpmUtils.miscutils.hdrFromPackage(ts, file)
273f935
             fname = '%s-%s-%s.%s.rpm' % (hdr['name'], hdr['version'], hdr['release'], hdr['arch'])
273f935
             if fname in list.keys():
273f935
                 if _sigmatches(hdr, list[fname]):
273f935
+                    self.logger.info("Finished checking drpm %s - success" % (file,))
273f935
                     return True
273f935
+            self.logger.info("Finished checking drpm %s - fail" % (file,))
273f935
             return False
273f935
 
273f935
         def _copy(file, path):
273f935
             if not os.path.exists('%s/drpms' % (path,)):
273f935
                 os.mkdir('%s/drpms' % (path,))
273f935
             destpath = '%s/drpms/%s' % (path, os.path.basename(file))
273f935
+            self.logger.info("Copying drpm %s" % (file,))
273f935
             try:
273f935
                 os.link(file, destpath)
273f935
             except OSError:
273f935
                 shutil.copy(file, destpath)
273f935
+            self.logger.info("Finished copying drpm %s" % (file,))
273f935
 
273f935
         fulllist = self.repomatic.getFileList(self.conf.directory, '.rpm')
273f935
         filelist = {}
273f935
@@ -150,7 +155,10 @@ class MetadataNew:
273f935
                 except OSError:
273f935
                     self.logger.error("Couldn't copy repodata from %s" % (self.previous,))
273f935
             if self.conf.deltas:
273f935
+                self.logger.info("Starting to copy old deltas for %s" % (path,))
273f935
                 self._copy_in_deltas(path)
273f935
+                self.logger.info("Finished copying old deltas for %s" % (path,))
273f935
+        self.logger.info("Creating metadata for %s" % (path,))
273f935
         self.repomatic.doPkgMetadata()
273f935
         self.repomatic.doRepoMetadata()
273f935
         self.repomatic.doFinalMove()
273f935
diff --git a/mash/metadata.py b/mash/metadata.py
273f935
index 938172a..59069c8 100644
273f935
--- a/mash/metadata.py
273f935
+++ b/mash/metadata.py
273f935
@@ -68,6 +68,7 @@ class MetadataNew:
273f935
         self.conf.update = True
273f935
         self.conf.quiet = True
273f935
         self.conf.unique_md_filenames = True
273f935
+        self.conf.profile = True
273f935
         self.previous = None
273f935
         self.logger = logger
273f935