mirror of
https://github.com/bisq-network/bisq-api-reference.git
synced 2026-01-26 17:33:33 +00:00
This might give Python devs an easier time than if all the sample code lived deep inside a gradle project. This means there is no root project gradle build file; the reference-doc-builder and java-examples modules are separate java projects, with their own build files.
8 lines
180 B
Python
8 lines
180 B
Python
import logging
|
|
|
|
logging.basicConfig(
|
|
format='[%(asctime)s %(levelname)s %(threadName)s] %(message)s',
|
|
level=logging.INFO,
|
|
datefmt='%H:%M:%S')
|
|
log = logging.getLogger()
|