From 28f6537f9d08372655bb3f1f33346b7bdf91921b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Dec 11 2008 23:22:55 +0000 Subject: Add a little more createrepo logging. --- diff --git a/mash/__init__.py b/mash/__init__.py index 779799e..c6cf441 100644 --- a/mash/__init__.py +++ b/mash/__init__.py @@ -113,10 +113,12 @@ class Mash: repomatic.doPkgMetadata() repomatic.doRepoMetadata() repomatic.doFinalMove() + self.logger.info("createrepo: finished %s" % (path,)) if repoview and self.config.use_repoview: repoview_cmd = ["/usr/bin/repoview","-q", "--title", self.config.repoviewtitle % { 'arch':arch }, "-u", self.config.repoviewurl % { 'arch':arch }, path] + self.logger.info("Running repoview for %s" % (path,)) os.execv("/usr/bin/repoview", repoview_cmd) else: os._exit(0) @@ -196,7 +198,7 @@ class Mash: for pkg in list: _install(pkg, path) - self.logger.info("Running createrepo for %s..." % (path,)) + self.logger.info("createrepo: starting %s..." % (path,)) status = self._makeMetadata(repo_path, repocache, arch, comps) def _get_reference(pkg, builds_hash):