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.mjs CHANGED
@@ -44,7 +44,7 @@ var __export = (target, all) => {
44
44
  var version;
45
45
  var init_version = __esm({
46
46
  "src/version.ts"() {
47
- version = "1.0.33";
47
+ version = "1.0.35";
48
48
  }
49
49
  });
50
50
  function isHeadlessEnvironment() {
@@ -6489,13 +6489,9 @@ var AdvancedLogger = class {
6489
6489
  /**
6490
6490
  * Output formatted log
6491
6491
  */
6492
- output(formatted, level) {
6492
+ output(formatted, _level) {
6493
6493
  if (this.options.output === "console" || this.options.output === "both") {
6494
- if (level >= 3 /* WARN */) {
6495
- console.error(formatted);
6496
- } else {
6497
- console.log(formatted);
6498
- }
6494
+ console.error(formatted);
6499
6495
  }
6500
6496
  if (this.options.output === "file" || this.options.output === "both") {
6501
6497
  this.writeToFile(formatted);