File size: 222 Bytes
b8a625b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""Folding Studio Demo."""
import logging
# Configure logging
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(message)s",
handlers=[
logging.StreamHandler(),
],
)
|