@mdfriday/foundry 26.4.16 → 26.4.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/cli.js +2 -3
- package/dist/index.js +1 -1
- package/dist/worker/pool-manager.js +1 -2
- package/dist/worker/worker-node.js +1 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -429,7 +429,6 @@ var init_logger = __esm({
|
|
|
429
429
|
entry.caller = caller;
|
|
430
430
|
}
|
|
431
431
|
const output = this.config.jsonFormat ? JSON.stringify(entry) : this.formatPlainText(entry);
|
|
432
|
-
console.log(output);
|
|
433
432
|
if (level === "error" /* ERROR */ || level === "fatal" /* FATAL */) {
|
|
434
433
|
process.stderr.write(output + "\n");
|
|
435
434
|
} else {
|
|
@@ -516,7 +515,7 @@ var init_manager = __esm({
|
|
|
516
515
|
loggers;
|
|
517
516
|
constructor() {
|
|
518
517
|
this.globalConfig = {
|
|
519
|
-
level: "
|
|
518
|
+
level: "error" /* ERROR */,
|
|
520
519
|
enableCaller: true,
|
|
521
520
|
jsonFormat: true
|
|
522
521
|
};
|
|
@@ -55321,7 +55320,7 @@ For more information, visit: https://help.mdfriday.com
|
|
|
55321
55320
|
* Show version
|
|
55322
55321
|
*/
|
|
55323
55322
|
showVersion() {
|
|
55324
|
-
const version = "26.4.
|
|
55323
|
+
const version = "26.4.17";
|
|
55325
55324
|
return {
|
|
55326
55325
|
success: true,
|
|
55327
55326
|
message: `MDFriday CLI v${version}`
|