Skip to content

Commit 5958557

Browse files
gabe-l-hartCISC
andauthored
fix: Remove duplicate logging
Signed-off-by: Gabe Goodhart <[email protected]> Co-authored-by: Sigbjørn Skjæret <[email protected]>
1 parent d8651c8 commit 5958557

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/llama-adapter.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -235,16 +235,6 @@ static void llama_adapter_lora_init_impl(llama_model & model, const char * path_
235235
(const llama_token *)data,
236236
(const llama_token *)data + seq_len,
237237
adapter.alora_invocation_tokens.begin());
238-
std::stringstream ss;
239-
ss << "[";
240-
for (size_t i = 0; i < adapter.alora_invocation_tokens.size(); ++i) {
241-
ss << adapter.alora_invocation_tokens[i];
242-
if (i < adapter.alora_invocation_tokens.size() - 1) {
243-
ss << ", ";
244-
}
245-
}
246-
ss << "]";
247-
LLAMA_LOG_INFO("%s: %s = %s\n", __func__, key.c_str(), ss.str().c_str());
248238
}
249239
}
250240

0 commit comments

Comments
 (0)