Skip to content
You are reading the frozen Warlock.js v4 documentation. Read the current v5 docs | Upgrade to v5
This page documents Warlock v4. View the latest docs.

Redaction

Keep secrets — passwords, tokens, auth headers, PII — out of your logs without sprinkling delete data.password across every call site.

Three layers. The first is on by default; the other two are opt-in:

  1. Built-in key denylist (since 4.15.0) — DEFAULT_REDACT_KEYS censors common secret key names (passwords, tokens, API/private keys, credential headers, session ids, connection strings, high-sensitivity financial PII) at any depth of context, message, and an Error’s own enumerable properties, with no configuration required. Same logger-wide choke point as the layers below, so every channel — including custom ones — inherits it.
  2. Logger-wide floor — set once via configure({ redact }) or log.setRedact(...). Applied once before fan-out, so every channel inherits it.
  3. Per-channel additive — set on individual channels via the redact field. Channel paths extend the floor; a channel can never undo a logger-wide redaction — including the built-in denylist from layer 0.

Layer 0 — the default denylist (no configuration needed)

Section titled “Layer 0 — the default denylist (no configuration needed)”
log.error("auth", "login", "failed", { headers: req.headers, body: req.body });
// context.headers.authorization → "[REDACTED]"
// context.body.password → "[REDACTED]"
// context.body.email → untouched

Keys are matched exactly, on a normalized form (lower-cased, separators stripped) — so one entry covers apiKey / api_key / API-KEY / x-api-key. It is not substring matching: tokenCount and passwordUpdatedAt survive untouched.

import { log, DEFAULT_REDACT_KEYS } from "@warlock.js/logger";
log.configure({
redact: {
keys: ["internalRef"], // union with the built-in set
defaultKeys: false, // opt out of the built-in set entirely
},
});

defaultKeys: false is an escape hatch, not a tuning knob — it restores the pre-4.15.0 behavior where a password in context reaches every sink in cleartext. Prefer adding a censor function if you only need to mask a value rather than blank it. As with paths, a channel cannot turn the default denylist off — it can only add keys, or turn it back on if the logger-wide config disabled it.

Not reachable by any layer: secrets interpolated into a message string (`token=${t}`), Map/Set/Buffer contents, and getter-backed or non-enumerable properties.

import { log, ConsoleLog, FileLog } from "@warlock.js/logger";
log.configure({
channels: [new ConsoleLog(), new FileLog({ chunk: "daily" })],
redact: {
paths: [
"context.password",
"context.*.token",
"context.headers.authorization",
],
censor: "[REDACTED]", // optional — string or function. Default "[REDACTED]"
},
});

Or at runtime:

log.setRedact({ paths: ["context.password"] });
log.setRedact(undefined); // clear the floor

Read the active config with log.getRedact().

A channel can redact more paths than the floor — useful when a destination has a broader audience than the rest of your channels.

import { log, ConsoleLog, FileLog } from "@warlock.js/logger";
log.configure({
channels: [
new ConsoleLog({ showContext: true }), // floor only
new FileLog({ chunk: "daily" }), // floor only
new MyAlertingChannel({ // floor + own paths
redact: {
paths: ["context.user.email", "context.user.phone", "context.metadata.*"],
censor: "***",
},
}),
],
redact: {
paths: ["context.password", "context.*.token"],
censor: "[REDACTED]",
},
});

For log.info("auth", "login", "ok", { user: { email: "x@y.com" }, password: "hunter2" }):

Channelcontext.passwordcontext.user.email
ConsoleLog (floor only)[REDACTED]x@y.com
FileLog (floor only)[REDACTED]x@y.com
MyAlertingChannel (floor + own)******

When a channel provides its own censor, it overrides the logger censor for both sets of paths in that channel only — the floor’s censor still applies on the other channels.

Paths are dotted glob patterns, evaluated against the full LoggingData object (prefix with context. or message. to scope).

PatternMatches
context.passwordexactly data.context.password
context.*.tokendata.context.<any>.token (one segment in between)
context.users.*.tokenarray elements (* matches indices)
**.passworddata.context.password, data.context.user.password, … any depth
message.apiKeywhen message is an object, data.message.apiKey

Wildcards:

  • * — exactly one segment (any object key, any array index).
  • ** — zero or more segments, greedily; matches at any depth.
// Literal string — every match becomes this value.
{ censor: "[REDACTED]" }
{ censor: "***" }
// Function — receives original value + dotted path, returns the replacement.
{
censor: (value, path) => {
if (typeof value !== "string") return "[REDACTED]";
return value.length > 4
? `${value.slice(0, 2)}***${value.slice(-2)}`
: "***";
},
}

Function censors are called for every match — keep them cheap. The path argument is the actual matched location, e.g. "context.users.0.token" for an array hit, so you can branch on it.

  • Always returns a deep clone. Your input data is never mutated.
  • Date and Error instances are reconstructed so instanceof checks still pass downstream.
  • Circular references are tolerated — the cloner uses an internal WeakMap to break cycles.
  • No-op fast path: the deep clone only happens when something actually matches — either a paths glob or a denylisted key (default or custom). With { defaultKeys: false } and no paths/keys, nothing runs at all.

If message is a plain object, paths under message.* work as expected. If message is a string (the most common case), redaction won’t scan it — string scrubbing requires regex and is intentionally out of scope. Wrap secrets in context and they’ll be redacted reliably.

SetupCost per log() call
Nothing configuredThe default denylist still runs: a cheap presence scan for a denylisted key, with the clone + censor pass skipped when nothing matches
{ defaultKeys: false }, no paths/keysZero — fast path, no clone, no scan
Logger-wide redact onlyOne deep clone + one path-walk, shared by every channel
Channel adds pathsThat channel re-clones from the original input and runs the merged pass once; other channels still share the cheaper logger-wide clone

Cost grows linearly with paths.length. The only pattern that truly scans every key is ** — profile before relying on it at very high volume.