Skip to content

Commit b60074f

Browse files
authored
llama-cli : remove duplicated log message (#9275)
1 parent 9c1ba55 commit b60074f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/main/main.cpp

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

388388
LOGLN(
389-
"recalculate the cached logits (check): embd_inp.empty() %s, n_matching_session_tokens %zu, embd_inp.size() %zu, session_tokens.size() %zu, embd_inp.size() %zu",
390-
log_tostr(embd_inp.empty()), n_matching_session_tokens, embd_inp.size(), session_tokens.size(), embd_inp.size());
389+
"recalculate the cached logits (check): embd_inp.empty() %s, n_matching_session_tokens %zu, embd_inp.size() %zu, session_tokens.size() %zu",
390+
log_tostr(embd_inp.empty()), n_matching_session_tokens, embd_inp.size(), session_tokens.size());
391391

392392
// if we will use the cache for the full prompt without reaching the end of the cache, force
393393
// reevaluation of the last token to recalculate the cached logits

0 commit comments

Comments
 (0)