Fixed logger.level() error when using the logger module with streamlit. It was getting loaded twice and so giving some errors because of this.

This commit is contained in:
ZeroCool940711 2022-10-15 02:17:31 -07:00 committed by Alejandro Gil
parent 1513632063
commit 5b728ce803

View File

@ -70,15 +70,18 @@ genfmt = "<level>{level: <10}</level> @ <green>{time:YYYY-MM-DD HH:mm:ss}</green
initfmt = "<magenta>INIT </magenta> | <level>{extra[status]: <10}</level> | <magenta>{message}</magenta>" initfmt = "<magenta>INIT </magenta> | <level>{extra[status]: <10}</level> | <magenta>{message}</magenta>"
msgfmt = "<level>{level: <10}</level> | <level>{message}</level>" msgfmt = "<level>{level: <10}</level> | <level>{message}</level>"
logger.level("GENERATION", no=24, color="<cyan>") try:
logger.level("PROMPT", no=23, color="<yellow>") logger.level("GENERATION", no=24, color="<cyan>")
logger.level("INIT", no=31, color="<white>") logger.level("PROMPT", no=23, color="<yellow>")
logger.level("INIT_OK", no=31, color="<green>") logger.level("INIT", no=31, color="<white>")
logger.level("INIT_WARN", no=31, color="<yellow>") logger.level("INIT_OK", no=31, color="<green>")
logger.level("INIT_ERR", no=31, color="<red>") logger.level("INIT_WARN", no=31, color="<yellow>")
# Messages contain important information without which this application might not be able to be used logger.level("INIT_ERR", no=31, color="<red>")
# As such, they have the highest priority # Messages contain important information without which this application might not be able to be used
logger.level("MESSAGE", no=61, color="<green>") # As such, they have the highest priority
logger.level("MESSAGE", no=61, color="<green>")
except TypeError:
pass
logger.__class__.generation = partialmethod(logger.__class__.log, "GENERATION") logger.__class__.generation = partialmethod(logger.__class__.log, "GENERATION")
logger.__class__.prompt = partialmethod(logger.__class__.log, "PROMPT") logger.__class__.prompt = partialmethod(logger.__class__.log, "PROMPT")