Skip to content

Commit 1330550

Browse files
committed
lower case message
1 parent 2bfde31 commit 1330550

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
@@ -1448,15 +1448,15 @@ static void common_chat_parse_gpt_oss(common_chat_msg_parser & builder) {
14481448
try {
14491449
channel();
14501450
} catch (const common_chat_msg_parse_exception & e) {
1451-
LOG_ERR("Parse error: %s\n", e.what());
1451+
LOG_ERR("parse error: %s\n", e.what());
14521452
}
14531453

14541454
// Read in complete messages until done or partial exception raised
14551455
while (builder.try_find_literal("<|start|>")) {
14561456
try {
14571457
start();
14581458
} catch (const common_chat_msg_parse_exception & e) {
1459-
LOG_ERR("Parse error: %s\n", e.what());
1459+
LOG_ERR("parse error: %s\n", e.what());
14601460
}
14611461
}
14621462

0 commit comments

Comments
 (0)