File: bug_report.md

package info (click to toggle)
python-adb-shell 0.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 792 kB
  • sloc: python: 3,861; makefile: 191; sh: 124
file content (41 lines) | stat: -rw-r--r-- 572 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

### Description

<!--What is the bug and how to reproduce it-->

### Log

<!--A log from when the issue occurred-->

To enable debug logging in Python:

```python
import logging

logging.basicConfig(level=logging.DEBUG)
```

To enable debug logging in Home Assistant:

#### Approach 1: configuration.yaml

```yaml
logger:
  default: warning  # or whatever
    logs:
      adb_shell: debug
```

#### Approach 2: `logger.set_level` service

```yaml
adb_shell: debug
```