Skip to content

Commit 56a8731

Browse files
committed
use LOG_INF for builtin function calls
1 parent 51d2e49 commit 56a8731

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
@@ -1381,11 +1381,11 @@ static void common_chat_parse_gpt_oss(common_chat_msg_parser & builder) {
13811381
builder.add_tool_call(name, "", args);
13821382
} else if (auto res = builder.try_consume_regex(browser_tool_call_regex)) {
13831383
auto code = builder.consume_rest();
1384-
LOG_DBG("builtin tool call to python code: %s", code.c_str());
1384+
LOG_INF("builtin tool call to python code: %s", code.c_str());
13851385
} else if (auto res = builder.try_consume_regex(python_tool_call_regex)) {
13861386
auto name = builder.str(res->groups[0]);
13871387
auto args = builder.consume_rest();
1388-
LOG_DBG("builtin tool call to browser.%s %s", name.c_str(), args.c_str());
1388+
LOG_INF("builtin tool call to browser.%s %s", name.c_str(), args.c_str());
13891389
} else {
13901390
throw common_chat_msg_parse_exception("expected function call, got: " + consume_until_start());
13911391
}

0 commit comments

Comments
 (0)