Skip to content

Commit 9f65756

Browse files
committed
Removing some console logs
1 parent db8c086 commit 9f65756

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

server/projects.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ let cacheTimestamp = Date.now();
1111
function clearProjectDirectoryCache() {
1212
projectDirectoryCache.clear();
1313
cacheTimestamp = Date.now();
14-
console.log('🗑️ Project directory cache cleared');
1514
}
1615

1716
// Load project configuration file
@@ -73,7 +72,6 @@ async function extractProjectDirectory(projectName) {
7372
return projectDirectoryCache.get(projectName);
7473
}
7574

76-
console.log(`🔍 Extracting project directory for: ${projectName}`);
7775

7876
const projectDir = path.join(process.env.HOME, '.claude', 'projects', projectName);
7977
const cwdCounts = new Map();
@@ -155,7 +153,6 @@ async function extractProjectDirectory(projectName) {
155153

156154
// Cache the result
157155
projectDirectoryCache.set(projectName, extractedPath);
158-
console.log(`💾 Cached project directory: ${projectName} -> ${extractedPath}`);
159156

160157
return extractedPath;
161158

0 commit comments

Comments
 (0)