plutin 1.8.2 → 1.8.3

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.cjs CHANGED
@@ -1663,7 +1663,7 @@ var Logger = class {
1663
1663
  case "discord":
1664
1664
  return new DiscordLogger(env);
1665
1665
  case "otel":
1666
- return env.OTEL_ENABLE === false ? new DiscordLogger(env) : OtelLogger;
1666
+ return env.OTEL_ENABLE === false ? new DiscordLogger(env) : new OtelLogger(env);
1667
1667
  default:
1668
1668
  return PinoLogger;
1669
1669
  }