mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-04-30 06:30:12 -05:00
5062bf1e3e
New SDKs and docs for the v1 release.
20 lines
265 B
Python
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,
|
|
),
|
|
)
|
|
|
|
# ‼️
|