@debugg-ai/debugg-ai-mcp 1.0.50 → 1.0.51

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.
@@ -15,7 +15,7 @@ export function detectRepoName() {
15
15
  try {
16
16
  const raw = execSync('git remote get-url origin', {
17
17
  encoding: 'utf-8',
18
- timeout: 5000,
18
+ timeout: 2000,
19
19
  stdio: ['ignore', 'pipe', 'ignore'],
20
20
  }).trim();
21
21
  cached = parseRepoName(raw);
@@ -23,14 +23,16 @@ const createLogger = () => {
23
23
  stderrLevels: ['error', 'warn', 'info', 'debug'],
24
24
  }),
25
25
  ],
26
- // Ensure uncaught exceptions and rejections are logged
26
+ // Ensure uncaught exceptions and rejections go to stderr (NOT stdout — stdout is the MCP transport)
27
27
  exceptionHandlers: [
28
28
  new winston.transports.Console({
29
+ stderrLevels: ['error', 'warn', 'info', 'debug'],
29
30
  format: winston.format.combine(winston.format.timestamp(), winston.format.errors({ stack: true }), winston.format.json()),
30
31
  }),
31
32
  ],
32
33
  rejectionHandlers: [
33
34
  new winston.transports.Console({
35
+ stderrLevels: ['error', 'warn', 'info', 'debug'],
34
36
  format: winston.format.combine(winston.format.timestamp(), winston.format.errors({ stack: true }), winston.format.json()),
35
37
  }),
36
38
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@debugg-ai/debugg-ai-mcp",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "Zero-Config, Fully AI-Managed End-to-End Testing for all code gen platforms.",
5
5
  "type": "module",
6
6
  "bin": {