mirror of
https://github.com/placeholder-soft/chroma.git
synced 2026-04-29 12:24:58 +08:00
13 lines
246 B
Python
13 lines
246 B
Python
import logging
|
|
|
|
|
|
def setup_logging():
|
|
logging.basicConfig(filename="chroma_logs.log")
|
|
logger = logging.getLogger("Chroma")
|
|
logger.setLevel(logging.DEBUG)
|
|
logger.debug("Logger created")
|
|
return logger
|
|
|
|
|
|
logger = setup_logging()
|