Removing some console logs

This commit is contained in:
simos
2025-07-13 12:46:28 +00:00
parent db8c086f22
commit 9f65756e2c

View File

@@ -11,7 +11,6 @@ let cacheTimestamp = Date.now();
function clearProjectDirectoryCache() {
projectDirectoryCache.clear();
cacheTimestamp = Date.now();
console.log('🗑️ Project directory cache cleared');
}
// Load project configuration file
@@ -73,7 +72,6 @@ async function extractProjectDirectory(projectName) {
return projectDirectoryCache.get(projectName);
}
console.log(`🔍 Extracting project directory for: ${projectName}`);
const projectDir = path.join(process.env.HOME, '.claude', 'projects', projectName);
const cwdCounts = new Map();
@@ -155,7 +153,6 @@ async function extractProjectDirectory(projectName) {
// Cache the result
projectDirectoryCache.set(projectName, extractedPath);
console.log(`💾 Cached project directory: ${projectName} -> ${extractedPath}`);
return extractedPath;