mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-10 02:17:59 +00:00
9 lines
158 B
Python
9 lines
158 B
Python
|
import logging
|
||
|
|
||
|
|
||
|
logging.basicConfig(
|
||
|
level=logging.INFO,
|
||
|
format="[%(asctime)s] %(levelname)s: %(message)s",
|
||
|
handlers=[logging.StreamHandler()]
|
||
|
)
|