wellcrafted/logger for library diagnostics: 5 levels, typed errors, injected sinks, and host-owned durability. Use for attach primitives, background errors, durable host logs, or replacing console.* in library code.
72
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Structured, level-keyed, field-oriented logging for library code. Modeled on Rust's tracing. Completes the defineErrors story: errors are structured data; level lives at the call site.
Ground API and behavior claims in the official wellcrafted-dev/wellcrafted
source and logger declarations for Epicenter's installed version. Ground call
site examples in current Epicenter code.
All of it ships from wellcrafted/logger: createLogger, consoleSink, memorySink, composeSinks, and the types. Runtime-agnostic, browser-safe. No file sink in-process: durability is a host concern (shell redirect, systemd journal, Cloudflare tail). The library emits to consoleSink; the operator decides where stdout/stderr go.
import { createLogger } from 'wellcrafted/logger';
const log = createLogger('markdown-materializer'); // defaults to consoleSink
log.info('materializer ready');
const result = await writeProjection();
if (result.error !== null) log.warn(result.error);trace | debug | info | warn | error. No fatal: process termination is the app's call, not the library's.
| Level | Signature | Use for |
|---|---|---|
trace | (message, data?) | Per-token / per-message noise; off in prod |
debug | (message, data?) | Internal state transitions (handshakes, cache loads) |
info | (message, data?) | Lifecycle events (connected, loaded, flushed) |
warn | (err) | Recoverable failure: retry, fallback, partial result |
error | (err) | Unrecoverable at this layer; the operation has given up |
Shape split is intentional. warn / error take a typed error unary: the variant carries message, name, and captured fields. trace / debug / info are free-form because free-running diagnostic events don't need enumeration.
Native Error also satisfies the logger's structural { name, message }
contract. This is intentional for migration and exception boundaries; prefer a
tagged variant when the layer owns a stable failure vocabulary.
// Right: same error, different levels in different contexts
log.warn(SyncError.ConnectionFailed({ cause })); // inside retry loop
log.error(SyncError.ConnectionFailed({ cause })); // last attempt, giving upDo NOT attach a severity to defineErrors variants. That's miette's pattern; tracing, log, and every production Rust logger put level on the call. Context-dependent data belongs at the context.
In epicenter, the typical pattern is branch on the Result, log inside the branch, then take action. The Result's data is usually needed on the Ok branch, so a chain combinator wouldn't earn its keep:
const walResult = trySync({
try: () => db.query('PRAGMA journal_mode = WAL').get(),
catch: (cause) => SqliteWriterError.PragmaSetupFailed({ pragma: 'WAL', cause }),
});
if (walResult.error !== null) {
log.warn(walResult.error);
} else if (walResult.data !== 'wal') {
log.warn(SqliteWriterError.WalSilentFallback({ actualMode: walResult.data }));
}You can also mint-and-log a tagged variant directly inside a .catch tail when there's no Result to branch on:
}).catch((cause) => {
log.warn(MaterializerWriteError.TableWriteFailed({ tableName, cause }));
});grep -rn "consoleSink({" src/ and grep -rn "log\.\(warn\|error\)(new Error" src/ before adding either.
Sinks take a raw LogEvent, which constrains nothing. createLogger is what binds the Logger type, and the Logger type is the only thing enforcing that warn/error are unary over a LoggableError. Reaching past the factory to consoleSink({ ts, level, source, message, data }) is not a shortcut to the same behavior: it is opting out of the contract.
Whispering did exactly this and grew a parallel log whose warn(error: Error, data?: unknown) silently dropped the error object whenever a caller passed the second argument. Nothing caught it, because nothing had promised anything. Import createLogger; import consoleSink only to compose it into a sink you pass to createLogger.
new Error at a log call sitelog.warn(new Error('X failed', { cause })) type-checks, because native Error satisfies LoggableError structurally. That escape hatch exists for migrating old catch (e) { console.warn(e) } sites, not for authoring new ones. A hand-built Error gives the sink a message string and no name worth filtering on, and the phrasing lives at the call site where the next similar failure will phrase it slightly differently.
Mint a defineErrors variant instead, owned by the module that owns the failure.
The tell to watch for: a boundary that types a failure callback as (cause: unknown) and ships no vocabulary with it. Every implementer must then invent a message, and new Error is the shortest way. If you declare such a callback, export the variants for it from the same file:
export const WhisperingBackgroundError = defineErrors({
AppFailed: ({ cause }: { cause: unknown }) => ({
message: 'Whispering app background work failed',
cause,
}),
});
export type WhisperingAppDependencies = {
reportBackgroundError(cause: unknown): void;
};Implementers then name a failure rather than describing one:
reportBackgroundError: (cause) => log.warn(WhisperingBackgroundError.AppFailed({ cause }))Minting a variant is not the same as publishing one. Two kinds:
Returned in a Result | Only logged | |
|---|---|---|
| Who sees it | Consumers, who branch on .name | A log sink |
| Export it? | Yes; renaming a variant is a breaking change | No, const at module scope |
| Examples | ReplicaError, DocumentPullError, DataReadError, ScalarProtocolError | SyncSupervisorError, BrowserWorkerError, ObservationCarrierError |
Exporting a log-only set publishes a name no one can import for a reason and freezes a string you should stay free to reword. packages/data and packages/lens keep theirs private for exactly this; only errors that leave in a Result are in the published failure surface. Export a log-only set solely when a second file in the same package logs the same failure, and even then, only within the package.
Name the variant key for the log line, not for the set. defineErrors stamps name from the key alone; the const you assign the set to never reaches the sink. createLogger's source supplies the namespace, so [data/sync] { name: 'StatusSubscriberThrew' } reads fine and the key stays short.
Prefer a field over interpolation. new Error(`could not ${what}`) produces a message no two calls share. ContainedStepFailed({ step: what, cause }) gives one constant message and a structured step.
Loggerlog.warn(Variant({ cause })) passes the Err wrapper, and createLogger unwraps it. A hand-narrowed reporter type does not:
// packages/lens: deliberately not `Logger`, so published declarations never
// reach AsyncDisposable and never dictate a consumer's logging stack
export type InvalidationErrorReporter = { error(error: unknown): void };Anything reaching a reporter like this must be plain readable data, so extract
the error payload at the call site: log.error(ObservationCarrierError.FrameNotText().error).
A stranger's { error(e) { ... } } then reads name, message, and cause
off the object instead of finding a wrapper.
A sink is ((event) => void) & Partial<AsyncDisposable>: a callable with optional resource cleanup.
import {
createLogger,
consoleSink, // default; routes to console[level]
memorySink, // for tests; returns { sink, events }
composeSinks, // fan out to multiple sinks
} from 'wellcrafted/logger';For a long-running daemon or CLI that needs durable logs, the library still emits to consoleSink; the operator decides where the stream goes:
bun run start # dev: console
bun run start 2>> ~/.app/app.jsonl # ad-hoc file capture
systemd-run --user bun run start # journal (structured queries via journalctl)This used to be jsonlFileSink; that primitive was removed because owning a file writer in-process bought complexity (backpressure, dispose semantics, error fallbacks) that shell redirection already solves.
composeSinks(...): fan outconst sink = composeSinks(consoleSink, myCustomSink);
const log = createLogger('source', sink);composeSinks forwards disposal to members that implement it (via sink[Symbol.asyncDispose]?.()). consoleSink is a no-op on dispose; stateful sinks flush and close.
memorySink(): for testsconst { sink, events } = memorySink();
const log = createLogger('test', sink);
log.warn(MyError.Thing({ cause: new Error('boom') }));
expect(events).toHaveLength(1);
expect(events[0]).toMatchObject({ level: 'warn', source: 'test' });Do NOT assert on console.* output. Inject a memorySink and inspect the event array.
No module-level logger registry. No setDefaultLogger(). Each attach primitive takes an optional log?: Logger option and defaults to createLogger(<source>) (console sink). Caller wires sinks explicitly.
const markdown = attachMarkdownExport(workspace, { dir, tables, log });
const sqlite = attachBunSqliteMaterializer(workspace, { filePath, log });
const collaboration = openCollaboration(workspace.ydoc, {
url,
openWebSocket,
onReconnectSignal,
log,
});Share one sink across loggers when you build a custom one:
const sink = composeSinks(consoleSink, myCustomSink);
const markdown = attachMarkdownExport(workspace, {
dir,
tables,
log: createLogger('workspace/markdown', sink),
});
const sqlite = attachBunSqliteMaterializer(workspace, {
filePath,
log: createLogger('workspace/sqlite', sink),
});The whole surface is pure JS and browser-safe.
Every sink receives:
type LogEvent = {
ts: number; // epoch millis
level: LogLevel; // 'trace' | 'debug' | 'info' | 'warn' | 'error'
source: string; // from createLogger()
message: string; // human text: for warn/error, inherited from the typed error
data?: unknown; // the typed error for warn/error; free-form for info/debug/trace
};Custom sinks that serialize for the wire should convert ts to ISO-8601 and flatten native Error instances (otherwise they JSON.stringify to {}).
error-handling skill: the trySync/tryAsync patterns the logger consumesdefine-errors skill: how to mint the typed error variants the logger consumesrust-errors skill: full tracing ↔ Logger mappingtapErr (from wellcrafted/result): Result-chain combinator that logs on the Err branch and passes the Result through. Rare in epicenter, since most call sites branch on result.error directly to use the data on the Ok branch. Reach for it only when the Result flows out of the function in a .then(...) chain.9e1f9d2
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.