Skip to content

Commit 56fc993

Browse files
committed
chore: tamed warning when creating new conversation
1 parent 01f43a3 commit 56fc993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/models/base_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ def load_chat_history(self, new_history_file_path=None):
10771077
)
10781078
except:
10791079
# 没有对话历史或者对话历史解析失败
1080-
logging.info(f"没有找到对话历史记录 {self.history_file_path}")
1080+
logging.debug(f"没有找到对话历史记录 {self.history_file_path}")
10811081
self.reset()
10821082
return (
10831083
os.path.basename(self.history_file_path),

0 commit comments

Comments
 (0)