You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mavsdk/source/index.rst
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,14 @@ The examples assume that the embedded ``mavsdk_server`` binary can be run. In so
69
69
Debug connection issues
70
70
-----------------------
71
71
72
+
.. note::
73
+
By default mavsdk-python will not print any output from mavsdk-server. If you are experiencing connection issues, it can pay to enable forwarding of the mavsdk-server output into the python console. You can do so with this piece of code at the top of your file:
74
+
75
+
.. code:: python
76
+
77
+
import logging
78
+
logging.basicConfig(level=logging.DEBUG)
79
+
72
80
In order to get more debugging information, it is possible to run the mavsdk_server binary separately.
73
81
74
82
For this case, let's assume the example was like this:
0 commit comments