Files
hatchet/sdks/python/examples/logger/client.py
Gabe Ruttner 8e80faf2d6 Fe overhaul docs (#1640)
* api changes

* doc changes

* move docs

* generated

* generate

* pkg

* backmerge main

* revert to main

* revert main

* race?

* remove go tests
2025-04-30 14:10:09 -07:00

20 lines
259 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,
),
)
# !!