##// END OF EJS Templates
logging: added additional log info to vcs detection util.
marcink -
r1315:72279f5c default
parent child Browse files
Show More
@@ -292,7 +292,8 b' def is_valid_repo(repo_name, base_path, '
292 :return True: if given path is a valid repository
292 :return True: if given path is a valid repository
293 """
293 """
294 full_path = os.path.join(safe_str(base_path), safe_str(repo_name))
294 full_path = os.path.join(safe_str(base_path), safe_str(repo_name))
295 log.debug('Checking if `%s` is a valid path for repository', repo_name)
295 log.debug('Checking if `%s` is a valid path for repository. '
296 'Explicit type: %s', repo_name, explicit_scm)
296
297
297 try:
298 try:
298 if explicit_scm:
299 if explicit_scm:
General Comments 0
You need to be logged in to leave comments. Login now