# HG changeset patch # User cmlenz # Date 1187888162 0 # Node ID 1c922d944bd2b675aa497fe6d19b0cf4cfc0259a # Parent a8787de4fbc3eedd12a05e088d9f25a307bf32e4 Minor improvement to logging in the build master when matching slaves against target platforms. diff --git a/bitten/queue.py b/bitten/queue.py --- a/bitten/queue.py +++ b/bitten/queue.py @@ -186,11 +186,15 @@ match = False break if match: - self.log.debug('Slave %s matched target platform %r of ' + self.log.debug('Slave %r matched target platform %r of ' 'build configuration %r', name, platform.name, config.name) platforms.append(platform) + if not platforms: + self.log.debug('Slave %r matched none of the target platforms', + name) + return platforms def populate(self):