# HG changeset patch # User Marcin Kuzminski # Date 2017-01-13 10:28:17 # Node ID 72279f5c871438558806eb90f68a499004712238 # Parent 456979480cb63f3f7699003f688fb75f4df8467d logging: added additional log info to vcs detection util. diff --git a/rhodecode/lib/utils.py b/rhodecode/lib/utils.py --- a/rhodecode/lib/utils.py +++ b/rhodecode/lib/utils.py @@ -292,7 +292,8 @@ def is_valid_repo(repo_name, base_path, :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: