We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d944e6e commit cbd296bCopy full SHA for cbd296b
.github/ISSUE_TEMPLATE/bug_report.md
@@ -22,5 +22,18 @@ A clear and concise description of what you expected to happen.
22
- OS: [e.g. Mac, Ubuntu]
23
- python-binance version
24
25
-**Logs or Additional context**
+**Logs**
26
+Please set logging to debug and paste any logs here, or upload `debug.log` file to the issue.
27
+```python
28
+import logging
29
+# This will log to both console and file
30
+logging.basicConfig(level=logging.DEBUG,format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
31
+handlers=[
32
+logging.FileHandler('debug.log'),
33
+logging.StreamHandler()
34
+]
35
+)
36
+```
37
+
38
+**Additional context**
39
Add any other context about the problem here.
0 commit comments