@softerist/heuristic-mcp 2.1.24 → 2.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -143,8 +143,9 @@ export async function logs() {
143
143
  if (cacheDirs.length === 0) {
144
144
  console.log('[Logs] No cache directories found.');
145
145
  console.log(`[Logs] Expected location: ${globalCacheRoot}`);
146
- return;
147
- }
146
+ console.log('');
147
+ // Don't return - fall through to show paths section
148
+ } else {
148
149
 
149
150
  console.log(`[Logs] Found ${cacheDirs.length} cache director${cacheDirs.length === 1 ? 'y' : 'ies'} in ${globalCacheRoot}\n`);
150
151
 
@@ -203,6 +204,7 @@ export async function logs() {
203
204
  }
204
205
 
205
206
  console.log(`${'─'.repeat(60)}\n`);
207
+ }
206
208
 
207
209
  // Show important paths
208
210
  console.log('[Paths] Important locations:');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softerist/heuristic-mcp",
3
- "version": "2.1.24",
3
+ "version": "2.1.25",
4
4
  "description": "An enhanced MCP server providing intelligent semantic code search with find-similar-code, recency ranking, and improved chunking. Fork of smart-coding-mcp.",
5
5
  "type": "module",
6
6
  "main": "index.js",