mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-05 17:20:02 -05:00
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)
|