From f557ac5f8c490e6b7ebc873049eb1aaa47f8003b Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 14 Jul 2014 14:48:31 -0600 Subject: [PATCH] Add a debug statement to reset_repo() Signed-off-by: Zack Cerza --- teuthology/repo_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/repo_utils.py b/teuthology/repo_utils.py index a392899d18202..0399aed3802e2 100644 --- a/teuthology/repo_utils.py +++ b/teuthology/repo_utils.py @@ -102,6 +102,7 @@ def reset_repo(repo_url, dest_path, branch): RuntimeError for other errors """ validate_branch(branch) + log.debug('Resetting repo at %s to branch %s', dest_path, branch) # This try/except block will notice if the requested branch doesn't # exist, whether it was cloned or fetched. try: -- 2.39.5