@putkoff/abstract-logger 0.0.33 → 0.0.34

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/cjs/index.js CHANGED
@@ -14548,9 +14548,6 @@ function resolveValue(...values) {
14548
14548
  function padRight(str, width) {
14549
14549
  return str.length >= width ? str : str + " ".repeat(width - str.length);
14550
14550
  }
14551
- function padLeft(str, width) {
14552
- return str.length >= width ? str : " ".repeat(width - str.length) + str;
14553
- }
14554
14551
  const COLS = {
14555
14552
  timestamp: 24,
14556
14553
  function: 28,
@@ -14760,12 +14757,11 @@ function getLogString(messageOrOptions, logType = null, details = null, function
14760
14757
  const emojiCol = padRight(emoji, 3);
14761
14758
  const ts = padRight(timestamp, COLS.timestamp);
14762
14759
  const fn = padRight(resolvedFunctionName.trim(), COLS.function);
14763
- const fileName = padLeft(resolvedFileLocation, COLS.file);
14760
+ const fileName = padRight(resolvedFileLocation.trim(), COLS.file);
14764
14761
  let line = `${emojiCol}` +
14765
14762
  `[${ts}] ` +
14766
14763
  `[${fn}] ` +
14767
14764
  `${message}`;
14768
- // ---------------- Details serialization ----------------
14769
14765
  if (showDetails && resolvedDetails !== null && resolvedDetails !== undefined) {
14770
14766
  const LOG_CONFIG = getLogConfig();
14771
14767
  const serialized = serializeDetails(resolvedDetails, condense, LOG_CONFIG.maxDetailsLength);