@8btc/ppt-generator-mcp 0.0.16 → 0.0.17
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 +2 -2
- package/package.json +1 -1
package/dist/utils/logger.js
CHANGED
|
@@ -14,14 +14,14 @@ const logger = winston_1.default.createLogger({
|
|
|
14
14
|
// (i.e., error, fatal, but not other levels)
|
|
15
15
|
//
|
|
16
16
|
new winston_1.default.transports.File({
|
|
17
|
-
filename: "loggererror.log",
|
|
17
|
+
filename: "ppt-loggererror.log",
|
|
18
18
|
level: "error",
|
|
19
19
|
}),
|
|
20
20
|
//
|
|
21
21
|
// - Write all logs with importance level of `info` or higher to `combined.log`
|
|
22
22
|
// (i.e., fatal, error, warn, and info, but not trace)
|
|
23
23
|
//
|
|
24
|
-
new winston_1.default.transports.File({ filename: "logercombined.log" }),
|
|
24
|
+
new winston_1.default.transports.File({ filename: "ppt-logercombined.log" }),
|
|
25
25
|
],
|
|
26
26
|
});
|
|
27
27
|
//
|