utilities
@particular/logger
Structured logging with Winston + Sentry
Installation
bun add @particular/logger
Key Exports
| Export | Type | Description |
|---|---|---|
| logger | function | Logger instance |
| createLogger | function | Create a scoped logger |
Usage Examples
Log messages
import { logger } from "@particular/logger";
logger.info("User signed in", { userId: "123" });