From f77c52119e9621445911eaeb8e2c1cc117a8d034 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 9 Feb 2016 14:38:38 +0100 Subject: [PATCH] [IMP] runbot: log matching closest branches --- runbot/runbot.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runbot/runbot.py b/runbot/runbot.py index 688f1f51..8b3b7a90 100644 --- a/runbot/runbot.py +++ b/runbot/runbot.py @@ -777,6 +777,10 @@ class runbot_build(osv.osv): for extra_repo in build.repo_id.dependency_ids: repo_id, closest_name, server_match = build._get_closest_branch_name(extra_repo.id) repo = self.pool['runbot.repo'].browse(cr, uid, repo_id, context=context) + build._log( + 'Building environment', + '%s match branch %s of %s' % (server_match, closest_name, repo.name) + ) repo.git_export(closest_name, build.path()) # Finally mark all addons to move to openerp/addons