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
```
|