mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-02 22:59:59 -06:00
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,
|
|
),
|
|
)
|
|
|
|
# ‼️
|