Files
hatchet/sdks/python/examples/logger/client.py
Matt Kaye 5062bf1e3e V1 SDKs and Docs (#1361)
New SDKs and docs for the v1 release.
2025-03-25 15:45:07 -07:00

20 lines
265 B
Python

# ❓ RootLogger
import logging
from hatchet_sdk import ClientConfig, Hatchet
logging.basicConfig(level=logging.INFO)
root_logger = logging.getLogger()
hatchet = Hatchet(
debug=True,
config=ClientConfig(
logger=root_logger,
),
)
# ‼️