Logging - oliver-zehentleitner/unicorn-binance-websocket-api GitHub Wiki
To configure the logging you can use the following example code.
Logging to a file
import logging
import os`
logging.getLogger("unicorn_binance_websocket_api")
logging.basicConfig(level=logging.DEBUG,
`filename=os.path.basename(__file__) + '.log',
`format="{asctime} [{levelname:8}] {process} {thread} {module}: {message}",
`style="{")
Logging to your terminal (stdout)
import logging
import os`
logging.getLogger("unicorn_binance_websocket_api")
logging.basicConfig(level=logging.DEBUG,
`format="{asctime} [{levelname:8}] {process} {thread} {module}: {message}",
`style="{")
Full example file: https://github.com/LUCIT-Systems-and-Development/unicorn-binance-websocket-api/blob/master/examples/_archive/example_logging.py