From 88c3404997248427d5962d90d7f2651491480955 Mon Sep 17 00:00:00 2001 From: native-api Date: Fri, 8 Oct 2021 11:56:08 +0300 Subject: [PATCH] Update ISSUE_TEMPLATE.md --- .github/ISSUE_TEMPLATE.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 21ba97a7..f023b45f 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -18,4 +18,11 @@ Make sure you have checked all steps below. - [ ] Python version: - [ ] C Compiler information (e.g. gcc 7.3): - [ ] Please attach verbose build log as 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` + * 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 + ```