Interface DebugErrorContext

Shape for structured error logging that mirrors the legacy debug helper.

interface DebugErrorContext {
    error?: Error & { stack?: string };
    req?: RequestLike;
}

Properties

Properties

error?: Error & { stack?: string }
req?: RequestLike