juno-code 1.0.33 → 1.0.35

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/index.js CHANGED
@@ -75,7 +75,7 @@ var __export = (target, all) => {
75
75
  exports.version = void 0;
76
76
  var init_version = __esm({
77
77
  "src/version.ts"() {
78
- exports.version = "1.0.33";
78
+ exports.version = "1.0.35";
79
79
  }
80
80
  });
81
81
  function isHeadlessEnvironment() {
@@ -6520,13 +6520,9 @@ var AdvancedLogger = class {
6520
6520
  /**
6521
6521
  * Output formatted log
6522
6522
  */
6523
- output(formatted, level) {
6523
+ output(formatted, _level) {
6524
6524
  if (this.options.output === "console" || this.options.output === "both") {
6525
- if (level >= 3 /* WARN */) {
6526
- console.error(formatted);
6527
- } else {
6528
- console.log(formatted);
6529
- }
6525
+ console.error(formatted);
6530
6526
  }
6531
6527
  if (this.options.output === "file" || this.options.output === "both") {
6532
6528
  this.writeToFile(formatted);