From afa008ec95f452535fafc45051fd16f214d38748 Mon Sep 17 00:00:00 2001 From: native-api Date: Fri, 8 Oct 2021 11:15:55 +0300 Subject: [PATCH] Update ISSUE_TEMPLATE.md --- .github/ISSUE_TEMPLATE.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index b933544..39d447f 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -18,5 +18,12 @@ Make sure you have checked all steps below. - [ ] pyenv-virtualenv version: - [ ] Python version: - [ ] virtualenv version (if installed): -- [ ] Please attach debug log of a faulty Pyenv invocation as a gist - * You can turn on verbose debug logging using by setting `PYENV_DEBUG=1`, e.g. `env PYENV_DEBUG=1 pyenv install -v 3.6.4` +- [ ] Please attach the debug log of a faulty Pyenv invocation as a gist + * If the problem happens in a Pyenv invocation, you can turn on debug logging by setting `PYENV_DEBUG=1`, e.g. `env PYENV_DEBUG=1 pyenv install -v 3.6.4` + * If the problem happens outside of a Pyenv invocation, get the debug log like this: + ``` + export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }' + set -x + + set +x + ```