mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-01 22:29:54 -06:00
* api changes * doc changes * move docs * generated * generate * pkg * backmerge main * revert to main * revert main * race? * remove go tests
20 lines
259 B
Python
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,
|
|
),
|
|
)
|
|
|
|
# !!
|