Skip to content

Commit 44f998a

Browse files
committed
fix compilation
1 parent c5ac2b8 commit 44f998a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/server/server.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4113,8 +4113,8 @@ int main(int argc, char ** argv) {
41134113
}
41144114

41154115
// print sample chat example to make it clear which template is used
4116-
LOG_INF("%s: chat template, chat_template: %d, example_format: '%s'\n", __func__,
4117-
params.chat_template.empty() ? "(built-in)" : params.chat_template,
4116+
LOG_INF("%s: chat template, chat_template: %s, example_format: '%s'\n", __func__,
4117+
params.chat_template.empty() ? "(built-in)" : params.chat_template.c_str(),
41184118
common_chat_format_example(ctx_server.model, params.chat_template).c_str());
41194119

41204120
ctx_server.queue_tasks.on_new_task(std::bind(

0 commit comments

Comments
 (0)