Browse Source

Added troubleshooting section to the documentation

pull/1118/head
Miguel Grinberg 5 years ago
parent
commit
4890607130
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 23
      docs/client.rst
  2. 23
      docs/server.rst

23
docs/client.rst

@ -299,3 +299,26 @@ Or for ``asyncio``::
The single argument passed to the method is the number of seconds to sleep The single argument passed to the method is the number of seconds to sleep
for. for.
Debugging and Troubleshooting
-----------------------------
To help you debug issues, the client can be configured to output logs to the
terminal::
import socketio
# standard Python
sio = socketio.Client(logger=True, engineio_logger=True)
# asyncio
sio = socketio.AsyncClient(logger=True, engineio_logger=True)
The ``logger`` argument controls logging related to the Socket.IO protocol,
while ``engineio_logger`` controls logs that originate in the low-level
Engine.IO transport. These arguments can be set to ``True`` to output logs to
``stderr``, or to an object compatible with Python's ``logging`` package
where the logs should be emitted to. A value of ``False`` disables logging.
Logging can help identify the cause of connection problems, unexpected
disconnections and other issues.

23
docs/server.rst

@ -565,6 +565,29 @@ example::
# emit an event # emit an event
external_sio.emit('my event', data={'foo': 'bar'}, room='my room') external_sio.emit('my event', data={'foo': 'bar'}, room='my room')
Debugging and Troubleshooting
-----------------------------
To help you debug issues, the server can be configured to output logs to the
terminal::
import socketio
# standard Python
sio = socketio.Server(logger=True, engineio_logger=True)
# asyncio
sio = socketio.AsyncServer(logger=True, engineio_logger=True)
The ``logger`` argument controls logging related to the Socket.IO protocol,
while ``engineio_logger`` controls logs that originate in the low-level
Engine.IO transport. These arguments can be set to ``True`` to output logs to
``stderr``, or to an object compatible with Python's ``logging`` package
where the logs should be emitted to. A value of ``False`` disables logging.
Logging can help identify the cause of connection problems, 400 responses,
bad performance and other issues.
.. _deployment-strategies: .. _deployment-strategies:
Deployment Strategies Deployment Strategies

Loading…
Cancel
Save