We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 825294d commit 2776f45Copy full SHA for 2776f45
.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,41 @@
1
+---
2
+name: Bug report
3
+about: Create a report to help us improve
4
+title: ''
5
+labels: ''
6
+assignees: ''
7
+
8
9
10
+### Description
11
12
+<!--What is the bug and how to reproduce it-->
13
14
+### Log
15
16
+<!--A log from when the issue occurred-->
17
18
+To enable debug logging in Python:
19
20
+```python
21
+import logging
22
23
+logging.getLogger().setLevel(logging.DEBUG)
24
+```
25
26
+To enable debug logging in Home Assistant:
27
28
+#### Approach 1: configuration.yaml
29
30
+```yaml
31
+logger:
32
+ default: warning # or whatever
33
+ logs:
34
+ adb_shell: debug
35
36
37
+#### Approach 2: `logger.set_level` service
38
39
40
+adb_shell: debug
41
0 commit comments