Skip to content

Commit 5552157

Browse files
committed
Document debug mode
1 parent 749040b commit 5552157

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/api/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,20 @@ r = Robot(wait_start=False)
5454
r.wait_start()
5555
```
5656

57+
## Debug mode
58+
59+
It is possible to run your robot in "Debug Mode".
60+
61+
In "Debug Mode", your robot will print more information about what it is doing.
62+
63+
```python
64+
from sbot import Robot
65+
r = Robot(debug=True)
66+
```
67+
68+
!!! info
69+
Debug mode is quite verbose. It will print a lot of information that you will not need.
70+
5771
## Included Libraries
5872

5973
Python already comes with plenty of [built-in

0 commit comments

Comments
 (0)