주석처리완

This commit is contained in:
leeheejin
2025-11-28 11:52:23 +09:00
parent 8dcffa8927
commit 652617fe37
10 changed files with 65 additions and 65 deletions

View File

@@ -93,7 +93,7 @@ class CodeCache {
* 여러 코드 카테고리를 배치로 미리 로딩
*/
async preloadCodes(categories: string[]): Promise<void> {
console.log(`🔄 코드 배치 로딩 시작: ${categories.join(", ")}`);
// console.log(`🔄 코드 배치 로딩 시작: ${categories.join(", ")}`);
const promises = categories.map(async (category) => {
try {
@@ -101,7 +101,7 @@ class CodeCache {
if (response.success && response.data) {
const cacheKey = this.createCodeKey(category);
this.set(cacheKey, response.data, this.defaultTTL);
console.log(`✅ 코드 로딩 완료: ${category} (${response.data.length}개)`);
// console.log(`✅ 코드 로딩 완료: ${category} (${response.data.length}개)`);
}
} catch (error) {
console.error(`❌ 코드 로딩 실패: ${category}`, error);
@@ -109,7 +109,7 @@ class CodeCache {
});
await Promise.all(promises);
console.log(`✅ 코드 배치 로딩 완료: ${categories.length}개 카테고리`);
// console.log(`✅ 코드 배치 로딩 완료: ${categories.length}개 카테고리`);
}
/**