Developer experience

Tools and guides for integrating LoggerMan into your workflow.

Explore

  • API explorer — try ingest and list endpoints with your project token (masked in-browser).
  • OpenAPI spec — machine-readable API for Postman, codegen, and CI.
  • API reference — human-readable endpoint docs.

SDK ergonomics

  • Local dev mode devMode: true skips network; devMode: "console" logs locally and still sends.
  • Environment tags environment: "staging" on createLogger tags every log without a separate project.
  • Structured errors — ingest failures return a code field (RATE_LIMITED, VALIDATION_ERROR, etc.) for SDK retry logic.
  • Rate limit headers X-RateLimit-Remaining, X-RateLimit-Reset, and Retry-After on throttled responses.

Errors & webhooks

  • Webhook signing — verify outgoing deliveries with HMAC-SHA256.
  • Send metadata.stackTrace, metadata.revision, and metadata.githubRepo on ERROR logs for in-dashboard GitHub links.

Migration & examples

  • Migration guide — import from Papertrail, Logtail, or JSON exports.
  • Reference app — this repository is a Next.js + Convex + Clerk monorepo using LoggerMan end-to-end. Clone github.com/sartiplay/loggerman.
  • Client codegen — generate Python, Go, or Ruby clients from the OpenAPI spec with OpenAPI Generator (see OpenAPI docs page).