From 30fe983ff55402b6bf304d4fd00443d1f4c3f002 Mon Sep 17 00:00:00 2001 From: Marcin Kuzminski Date: Fri, 13 Jan 2017 11:28:17 +0100 Subject: [PATCH] logging: added additional log info to vcs detection util. --- rhodecode/lib/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rhodecode/lib/utils.py b/rhodecode/lib/utils.py index 427d3ff5..54473898 100644 --- a/rhodecode/lib/utils.py +++ b/rhodecode/lib/utils.py @@ -292,7 +292,8 @@ def is_valid_repo(repo_name, base_path, expect_scm=None, explicit_scm=None): :return True: if given path is a valid repository """ full_path = os.path.join(safe_str(base_path), safe_str(repo_name)) - log.debug('Checking if `%s` is a valid path for repository', repo_name) + log.debug('Checking if `%s` is a valid path for repository. ' + 'Explicit type: %s', repo_name, explicit_scm) try: if explicit_scm: