From b3683ae548873238c27efc10850174b69b4f597a Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Sat, 27 Nov 2021 13:04:07 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20Update=20github=20issue=20template=20?= =?UTF-8?q?=E2=99=BB=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/bug_report.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 600be76..cb7f6bd 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -77,4 +77,25 @@ task --version Please provide detailed stacktraces, screenshot, etc here. If `taskwarrior-tui` crashes, you can set the RUST_BACKTRACE=1 for a detailed stacktrace. +The following is the data directory that `taskwarrior-tui` uses: + +Platform | Value | Example +-------------------------------------------------------------------------------------------- +Linux | $XDG_DATA_HOME or $HOME/.local/share | /home/alice/.local/share +macOS | $HOME/Library/Application Support | /Users/Alice/Library/Application Support +Windows | {FOLDERID_LocalAppData} | C:\Users\Alice\AppData\Local + +If an appropriate log level is set, the following file may have useful information: ${data-dir}/taskwarrior-tui/taskwarrior-tui.log + +```bash +export TASKWARRIOR_TUI_LOG_LEVEL=debug +export RUST_BACKTRACE=1 +taskwarrior-tui + +# OR + +export TASKWARRIOR_TUI_LOG_LEVEL=trace +export RUST_BACKTRACE=1 +taskwarrior-tui +``` -->