更新 git忽略文件配置, triton地址修改

This commit is contained in:
zhouchengrong
2024-03-19 16:55:59 +08:00
parent 8973479756
commit 65baf3b56c
4 changed files with 11 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
from app.core.config import LOGSPATH
from app.core.config import LOGS_PATH
LOGGER_CONFIG_DICT = {
"version": 1,
@@ -17,7 +17,7 @@ LOGGER_CONFIG_DICT = {
"class": "logging.handlers.RotatingFileHandler",
"level": "INFO",
"formatter": "simple",
"filename": LOGSPATH,
"filename": LOGS_PATH,
"maxBytes": 10485760,
"backupCount": 50,
"encoding": "utf8",
@@ -26,7 +26,7 @@ LOGGER_CONFIG_DICT = {
"class": "logging.handlers.RotatingFileHandler",
"level": "ERROR",
"formatter": "simple",
"filename": LOGSPATH,
"filename": LOGS_PATH,
"maxBytes": 10485760,
"backupCount": 20,
"encoding": "utf8",
@@ -35,7 +35,7 @@ LOGGER_CONFIG_DICT = {
"class": "logging.handlers.RotatingFileHandler",
"level": "DEBUG",
"formatter": "simple",
"filename": LOGSPATH,
"filename": LOGS_PATH,
"maxBytes": 10485760,
"backupCount": 50,
"encoding": "utf8",