mirror of
https://github.com/siteboon/claudecodeui.git
synced 2025-12-14 13:19:31 +00:00
Removing some console logs
This commit is contained in:
@@ -11,7 +11,6 @@ let cacheTimestamp = Date.now();
|
|||||||
function clearProjectDirectoryCache() {
|
function clearProjectDirectoryCache() {
|
||||||
projectDirectoryCache.clear();
|
projectDirectoryCache.clear();
|
||||||
cacheTimestamp = Date.now();
|
cacheTimestamp = Date.now();
|
||||||
console.log('🗑️ Project directory cache cleared');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load project configuration file
|
// Load project configuration file
|
||||||
@@ -73,7 +72,6 @@ async function extractProjectDirectory(projectName) {
|
|||||||
return projectDirectoryCache.get(projectName);
|
return projectDirectoryCache.get(projectName);
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`🔍 Extracting project directory for: ${projectName}`);
|
|
||||||
|
|
||||||
const projectDir = path.join(process.env.HOME, '.claude', 'projects', projectName);
|
const projectDir = path.join(process.env.HOME, '.claude', 'projects', projectName);
|
||||||
const cwdCounts = new Map();
|
const cwdCounts = new Map();
|
||||||
@@ -155,7 +153,6 @@ async function extractProjectDirectory(projectName) {
|
|||||||
|
|
||||||
// Cache the result
|
// Cache the result
|
||||||
projectDirectoryCache.set(projectName, extractedPath);
|
projectDirectoryCache.set(projectName, extractedPath);
|
||||||
console.log(`💾 Cached project directory: ${projectName} -> ${extractedPath}`);
|
|
||||||
|
|
||||||
return extractedPath;
|
return extractedPath;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user