mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-02-11 10:38:37 -06:00
* fix: python sdk graceful shutdown and retry errors * chore: address changes from review
13 lines
203 B
Python
13 lines
203 B
Python
import os
|
|
import sys
|
|
from loguru import logger
|
|
|
|
# loguru config
|
|
config = {
|
|
"handlers": [
|
|
{"sink": sys.stdout, "format": "hatchet -- {time} - {message}"},
|
|
],
|
|
}
|
|
|
|
logger.configure(**config)
|