Update issue templates

This commit is contained in:
Chris Rienzo 2020-08-06 09:54:42 -04:00 committed by GitHub
parent 278d0741e6
commit 2009f44942
1 changed files with 44 additions and 0 deletions

44
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@ -0,0 +1,44 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Using this example configuration...
2. Dial into conference using verto
3. Play my_problem_file.mp4 into conference
4. FreeSWITCH crashes
**Expected behavior**
A clear and concise description of what you expected to happen.
**Package version or git hash**
- Version [e.g. 1.10.4]
**Trace logs**
Provide freeswitch logs w/ DEBUG and UUID logging enabled
**backtrace from core file**
If applicable, provide the full backtrace from the core file.
```
(gdb) set pagination off
(gdb) set logging file /tmp/backtrace.log
(gdb) set logging on
Copying output to /tmp/backtrace.log.
(gdb) bt
(gdb) bt full
(gdb) info threads
(gdb) thread apply all bt
(gdb) thread apply all bt full
(gdb) set logging off
Done logging to /tmp/backtrace.log.
(gdb) quit
```