@punks/backend-core 0.0.81 → 0.0.82

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
@@ -31253,7 +31253,7 @@ class InternalLogger {
31253
31253
  });
31254
31254
  switch (options.serialization) {
31255
31255
  case MetaSerializationType.JSON:
31256
- return options.maxMetaLength
31256
+ return serializedMeta && options.maxMetaLength
31257
31257
  ? truncateString(serializedMeta, options.maxMetaLength, "...")
31258
31258
  : serializedMeta;
31259
31259
  case MetaSerializationType.None: