Skip to content

Commit 3875b4c

Browse files
committed
change parse errors to debug
1 parent 9bb2a8f commit 3875b4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/chat.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,7 +1472,7 @@ static void common_chat_parse_gpt_oss(common_chat_msg_parser & builder) {
14721472
try {
14731473
channel();
14741474
} catch (const common_chat_msg_parse_exception & e) {
1475-
LOG_ERR("parse error: %s\n", e.what());
1475+
LOG_DBG("Parse error: %s\n", e.what());
14761476
}
14771477

14781478
// Read in complete messages until done or partial exception raised
@@ -1481,7 +1481,7 @@ static void common_chat_parse_gpt_oss(common_chat_msg_parser & builder) {
14811481
try {
14821482
start();
14831483
} catch (const common_chat_msg_parse_exception & e) {
1484-
LOG_ERR("parse error: %s\n", e.what());
1484+
LOG_DBG("Parse error: %s\n", e.what());
14851485
}
14861486
}
14871487

0 commit comments

Comments
 (0)