snow-flow 3.4.31 → 3.4.32
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/dist/utils/logger.js +3 -2
- package/package.json +1 -1
package/dist/utils/logger.js
CHANGED
|
@@ -17,9 +17,10 @@ class Logger {
|
|
|
17
17
|
format: winston_1.default.format.combine(winston_1.default.format.timestamp(), winston_1.default.format.errors({ stack: true }), winston_1.default.format.json()),
|
|
18
18
|
defaultMeta: { agent: agentName },
|
|
19
19
|
transports: [
|
|
20
|
-
// Console transport
|
|
20
|
+
// Console transport - use stderr to keep stdout clean for JSON-RPC
|
|
21
21
|
new winston_1.default.transports.Console({
|
|
22
|
-
format: winston_1.default.format.combine(winston_1.default.format.colorize(), winston_1.default.format.simple())
|
|
22
|
+
format: winston_1.default.format.combine(winston_1.default.format.colorize(), winston_1.default.format.simple()),
|
|
23
|
+
stderrLevels: ['error', 'warn', 'info', 'debug', 'verbose', 'silly'] // All levels to stderr
|
|
23
24
|
}),
|
|
24
25
|
// File transport
|
|
25
26
|
new winston_1.default.transports.File({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.32",
|
|
4
4
|
"description": "ServiceNow development framework with MCP server integration. Executes background scripts using ES5 JavaScript only (ServiceNow Rhino engine requirement). Provides 17 MCP servers for complete ServiceNow operations including widget deployment with coherence validation, table operations, script execution, machine learning, advanced features, and comprehensive platform management.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|