aboutsummaryrefslogtreecommitdiffstats
path: root/ISSUE_TEMPLATE.md
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-12-17 18:13:55 +0100
committerLibravatar emersion <contact@emersion.fr>2018-12-17 18:38:15 +0100
commit4a42561a6282d013a3532f8eb05cf177d6918467 (patch)
tree646ee8d97368b544664b9cfa76d1f7aa5be441cf /ISSUE_TEMPLATE.md
parentcmd_split: add null checks in do_split (diff)
downloadsway-4a42561a6282d013a3532f8eb05cf177d6918467.tar.gz
sway-4a42561a6282d013a3532f8eb05cf177d6918467.tar.zst
sway-4a42561a6282d013a3532f8eb05cf177d6918467.zip
issue template: add instructions for stack traces
Diffstat (limited to 'ISSUE_TEMPLATE.md')
-rw-r--r--ISSUE_TEMPLATE.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md
index 5f3bb6bb..7caa5d1e 100644
--- a/ISSUE_TEMPLATE.md
+++ b/ISSUE_TEMPLATE.md
@@ -5,7 +5,7 @@ If you are using the nvidia proprietary driver for any reason, you have two choi
5 5
6If `lsmod | grep nvidia | wc -l` shows anything other than zero, your bug report is not welcome here. 6If `lsmod | grep nvidia | wc -l` shows anything other than zero, your bug report is not welcome here.
7 7
8Otherwise, please include the following four components in your bug report: sway version, debug log, configuration (if applicable), and an explanation of steps taken to reproduce the issue. 8Otherwise, please include the following four components in your bug report: sway version, debug log, configuration (if applicable), and an explanation of steps taken to reproduce the issue. If sway crashes, also include a stack trace.
9 9
10Obtain your version like so: 10Obtain your version like so:
11 11
@@ -32,3 +32,11 @@ You should try to reproduce the issue with the default configuration. If you can
32* Configuration File: 32* Configuration File:
33 33
34Finally, explain the steps you took in plain English to reproduce the problem below. 34Finally, explain the steps you took in plain English to reproduce the problem below.
35
36* Stack Trace, if sway crashes:
37
38If you use systemd, you should be able to open the coredump of the most recent crash with GDB like so:
39
40 coredumpctl gdb sway
41
42And then type `bt full` to obtain the stack trace.