logging: added additional log info to vcs detection util.
This commit is contained in:
parent
85a3a40913
commit
30fe983ff5
1 changed files with 2 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue