We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0e3ef commit f0dac92Copy full SHA for f0dac92
tools/main/main.cpp
@@ -587,12 +587,12 @@ int main(int argc, char ** argv) {
587
588
if (n_past + (int) embd.size() >= n_ctx) {
589
if (!params.ctx_shift){
590
- LOG_DBG("\n\n%s: context full and context shift is disabled => stopping\n", __func__);
+ LOG_WRN("\n\n%s: context full and context shift is disabled => stopping\n", __func__);
591
break;
592
}
593
594
if (params.n_predict == -2) {
595
- LOG_DBG("\n\n%s: context full and n_predict == -%d => stopping\n", __func__, params.n_predict);
+ LOG_WRN("\n\n%s: context full and n_predict == -%d => stopping\n", __func__, params.n_predict);
596
597
598
0 commit comments