server: rename debug tags to match --cache-idle-slots naming (#22292)

This commit is contained in:
Yes You Can Have Your Own
2026-04-24 09:28:44 +03:00
committed by GitHub
parent 8bc492ebb4
commit 793d0a7931
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -719,7 +719,7 @@ private:
return;
}
SLT_INF(slot, "%s", "saving idle slot to prompt cache\n");
SLT_DBG(slot, "%s", "__TEST_TAG_CLEAR_IDLE_SLOT__\n");
SLT_DBG(slot, "%s", "__TEST_TAG_CACHE_IDLE_SLOT__\n");
slot.prompt_save(*prompt_cache);
slot.prompt_clear(false);
prompt_cache->update();
@@ -996,7 +996,7 @@ private:
params_base.cache_idle_slots = false;
} else {
SRV_INF("%s: idle slots will be saved to prompt cache and cleared upon starting a new task\n", __func__);
SRV_DBG("%s", "__TEST_TAG_CLEAR_IDLE_ENABLED__\n");
SRV_DBG("%s", "__TEST_TAG_CACHE_IDLE_SLOTS_ENABLED__\n");
}
}