argusqa-os 9.2.1 → 9.2.2

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": "argusqa-os",
3
- "version": "9.2.1",
3
+ "version": "9.2.2",
4
4
  "description": "Argus — AI-powered automated dev-testing platform using Chrome DevTools MCP and Claude Code",
5
5
  "keywords": [
6
6
  "mcp",
package/src/mcp-server.js CHANGED
@@ -129,7 +129,7 @@ async function handleLastReport() {
129
129
  // ── Server bootstrap ──────────────────────────────────────────────────────────
130
130
 
131
131
  const server = new Server(
132
- { name: 'argus', version: '9.2.1' },
132
+ { name: 'argus', version: '9.2.2' },
133
133
  { capabilities: { tools: {} } },
134
134
  );
135
135
 
@@ -24,14 +24,15 @@ function usePrettyOutput() {
24
24
 
25
25
  function createLogger() {
26
26
  const level = process.env.ARGUS_LOG_LEVEL ?? 'info';
27
+ // Always write to stderr — stdout is reserved for the MCP stdio JSON-RPC channel.
27
28
  if (usePrettyOutput()) {
28
29
  try {
29
- return pino({ level, transport: { target: 'pino-pretty', options: { colorize: true } } });
30
+ return pino({ level, transport: { target: 'pino-pretty', options: { colorize: true, destination: 2 } } });
30
31
  } catch {
31
32
  // pino-pretty not installed or failed to load — fall back to JSON
32
33
  }
33
34
  }
34
- return pino({ level });
35
+ return pino({ level }, process.stderr);
35
36
  }
36
37
 
37
38
  export const logger = createLogger();