Everything you need to integrate Loggy into your application. SDKs, APIs, and guides for every product.
Integrate Loggy into your application in under 5 minutes with our Node.js SDK.
npm install @loggydev/loggy-nodeimport { CreateLoggy } from '@loggydev/loggy-node'; const loggy = CreateLoggy({ identifier: 'my-app', accessToken: process.env.LOGGY_TOKEN, });
// Log levels loggy.debug('Debug message'); loggy.info('User signed up', { userId: 123 }); loggy.warn('Rate limit approaching'); loggy.error('Payment failed', { error }); // With tags for filtering loggy.info('Order placed', { orderId: 'ORD-123', _tags: ['orders', 'payments'] });
| Option | Type | Description |
|---|---|---|
| identifier | string | A name to identify your application |
| accessToken | string | Your project's access token for remote logging |
| level | string | Minimum log level: 'debug', 'info', 'warn', 'error' |
| compact | boolean | Enable compact console output |
| encryption | object | E2E encryption config (Pro/Team only) |
payment failedFull-text search
level:errorFilter by log level
userId:123Search in metadata
tag:paymentsFilter by tag
Create your free account and start sending logs in minutes.
Get Started for Free