diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2006-04-07 18:18:54 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2006-04-07 18:18:54 +0000 |
commit | d6c5f756a93fa38dbb77e4eb23c7ee45296d554c (patch) | |
tree | ded14adc6623df7832c8aeb9ef56b6e1166028e5 /src/lib/Server/Plugin.py | |
parent | 40b7d470cb03ac18115d45a089d56d0552b8e145 (diff) | |
download | bcfg2-d6c5f756a93fa38dbb77e4eb23c7ee45296d554c.tar.gz bcfg2-d6c5f756a93fa38dbb77e4eb23c7ee45296d554c.tar.bz2 bcfg2-d6c5f756a93fa38dbb77e4eb23c7ee45296d554c.zip |
Improve error messages for Svc/Pkgmgr
Remove component name from unknown type stdout messages
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1825 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Plugin.py')
-rw-r--r-- | src/lib/Server/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py index b83ea422b..4c4406747 100644 --- a/src/lib/Server/Plugin.py +++ b/src/lib/Server/Plugin.py @@ -301,7 +301,7 @@ class XMLPrioDir(Plugin, DirectoryBacked): else: prio = [int(src.priority) for src in matching] if prio.count(max(prio)) > 1: - self.logger.error("Found multiple %s sources with same priority for %s, pkg %s" % + self.logger.error("Found conflicting %s sources with same priority for %s, pkg %s" % (self.__element__.lower(), metadata.hostname, entry.get('name'))) raise PluginExecutionError index = prio.index(max(prio)) |