diff options
author | Chris Lumens <clumens@redhat.com> | 2006-08-03 20:10:00 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-08-03 20:10:00 +0000 |
commit | 692ebd68165e5db719f04a47ca2ee81794e555f2 (patch) | |
tree | a772d70c839b13c02dc570a66f99a2c3ffd4e39b /iw/task_gui.py | |
parent | fbeb1a00e301732ac584231a3003e8f30d93eaa4 (diff) | |
download | anaconda-692ebd68165e5db719f04a47ca2ee81794e555f2.tar.gz anaconda-692ebd68165e5db719f04a47ca2ee81794e555f2.tar.xz anaconda-692ebd68165e5db719f04a47ca2ee81794e555f2.zip |
Log added repos (#201212).
Diffstat (limited to 'iw/task_gui.py')
-rw-r--r-- | iw/task_gui.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/iw/task_gui.py b/iw/task_gui.py index ce53c849b..156965ee3 100644 --- a/iw/task_gui.py +++ b/iw/task_gui.py @@ -21,6 +21,9 @@ import network from yuminstall import AnacondaYumRepo import yum.Errors +import logging +log = logging.getLogger("anaconda") + class TaskWindow(InstallWindow): def getNext(self): if self.xml.get_widget("customRadio").get_active(): @@ -106,6 +109,7 @@ class TaskWindow(InstallWindow): try: self.backend.doRepoSetup(self.anaconda, reponame, fatalerrors = False) + log.info("added repository %s with with source URL %s" % (reponame, repourl)) except yum.Errors.RepoError, e: self.intf.messageWindow(_("Error"), _("Unable to read package metadata from repository. " |