@comfanion/workflow 4.36.8 → 4.36.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.36.8",
3
+ "version": "4.36.9",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "3.0.0",
3
- "buildDate": "2026-01-24T15:10:43.480Z",
3
+ "buildDate": "2026-01-24T15:12:12.755Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -31,9 +31,9 @@ function logFile(msg: string): void {
31
31
  }
32
32
  }
33
33
 
34
- // Log to console AND file
34
+ // Log to file, console only in debug mode
35
35
  function log(msg: string): void {
36
- console.log(`[file-indexer] ${msg}`)
36
+ if (DEBUG) console.log(`[file-indexer] ${msg}`)
37
37
  logFile(msg)
38
38
  }
39
39