@punks/backend-core 0.0.54 → 0.0.55

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/esm/index.js CHANGED
@@ -28434,6 +28434,9 @@ class InternalLogger {
28434
28434
  return this.container.instances.filter((x) => x.options.enabled && x.options.level <= level);
28435
28435
  }
28436
28436
  serializeMeta(options, meta) {
28437
+ if (meta && typeof meta === "string") {
28438
+ return meta;
28439
+ }
28437
28440
  const serializedMeta = meta
28438
28441
  ? jsonSerialize(meta, {
28439
28442
  prettify: true,