Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
178 lines
4 KiB
Text
178 lines
4 KiB
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const capture = require('./capture.js');
|
|
const core = require('@sentry/core');
|
|
|
|
/**
|
|
* @summary Capture a log with the `trace` level. Requires the `enableLogs` option to be enabled.
|
|
*
|
|
* You can either pass a message and attributes or a message template, params and attributes.
|
|
*
|
|
* @example
|
|
*
|
|
* ```
|
|
* Sentry.logger.trace('Starting database connection', {
|
|
* database: 'users',
|
|
* connectionId: 'conn_123'
|
|
* });
|
|
* ```
|
|
*
|
|
* @example With template strings
|
|
*
|
|
* ```
|
|
* Sentry.logger.trace('Database connection %s established for %s',
|
|
* ['successful', 'users'],
|
|
* { connectionId: 'conn_123' }
|
|
* );
|
|
* ```
|
|
*/
|
|
function trace(...args) {
|
|
capture.captureLog('trace', ...args);
|
|
}
|
|
|
|
/**
|
|
* @summary Capture a log with the `debug` level. Requires the `enableLogs` option to be enabled.
|
|
*
|
|
* You can either pass a message and attributes or a message template, params and attributes.
|
|
*
|
|
* @example
|
|
*
|
|
* ```
|
|
* Sentry.logger.debug('Cache miss for user profile', {
|
|
* userId: 'user_123',
|
|
* cacheKey: 'profile:user_123'
|
|
* });
|
|
* ```
|
|
*
|
|
* @example With template strings
|
|
*
|
|
* ```
|
|
* Sentry.logger.debug('Cache %s for %s: %s',
|
|
* ['miss', 'user profile', 'key not found'],
|
|
* { userId: 'user_123' }
|
|
* );
|
|
* ```
|
|
*/
|
|
function debug(...args) {
|
|
capture.captureLog('debug', ...args);
|
|
}
|
|
|
|
/**
|
|
* @summary Capture a log with the `info` level. Requires the `enableLogs` option to be enabled.
|
|
*
|
|
* You can either pass a message and attributes or a message template, params and attributes.
|
|
*
|
|
* @example
|
|
*
|
|
* ```
|
|
* Sentry.logger.info('User profile updated', {
|
|
* userId: 'user_123',
|
|
* updatedFields: ['email', 'preferences']
|
|
* });
|
|
* ```
|
|
*
|
|
* @example With template strings
|
|
*
|
|
* ```
|
|
* Sentry.logger.info('User %s updated their %s',
|
|
* ['John Doe', 'profile settings'],
|
|
* { userId: 'user_123' }
|
|
* );
|
|
* ```
|
|
*/
|
|
function info(...args) {
|
|
capture.captureLog('info', ...args);
|
|
}
|
|
|
|
/**
|
|
* @summary Capture a log with the `warn` level. Requires the `enableLogs` option to be enabled.
|
|
*
|
|
* You can either pass a message and attributes or a message template, params and attributes.
|
|
*
|
|
* @example
|
|
*
|
|
* ```
|
|
* Sentry.logger.warn('Rate limit approaching', {
|
|
* endpoint: '/api/users',
|
|
* currentRate: '95/100',
|
|
* resetTime: '2024-03-20T10:00:00Z'
|
|
* });
|
|
* ```
|
|
*
|
|
* @example With template strings
|
|
*
|
|
* ```
|
|
* Sentry.logger.warn('Rate limit %s for %s: %s',
|
|
* ['approaching', '/api/users', '95/100 requests'],
|
|
* { resetTime: '2024-03-20T10:00:00Z' }
|
|
* );
|
|
* ```
|
|
*/
|
|
function warn(...args) {
|
|
capture.captureLog('warn', ...args);
|
|
}
|
|
|
|
/**
|
|
* @summary Capture a log with the `error` level. Requires the `enableLogs` option to be enabled.
|
|
*
|
|
* You can either pass a message and attributes or a message template, params and attributes.
|
|
*
|
|
* @example
|
|
*
|
|
* ```
|
|
* Sentry.logger.error('Failed to process payment', {
|
|
* orderId: 'order_123',
|
|
* errorCode: 'PAYMENT_FAILED',
|
|
* amount: 99.99
|
|
* });
|
|
* ```
|
|
*
|
|
* @example With template strings
|
|
*
|
|
* ```
|
|
* Sentry.logger.error('Payment processing failed for order %s: %s',
|
|
* ['order_123', 'insufficient funds'],
|
|
* { amount: 99.99 }
|
|
* );
|
|
* ```
|
|
*/
|
|
function error(...args) {
|
|
capture.captureLog('error', ...args);
|
|
}
|
|
|
|
/**
|
|
* @summary Capture a log with the `fatal` level. Requires the `enableLogs` option to be enabled.
|
|
*
|
|
* You can either pass a message and attributes or a message template, params and attributes.
|
|
*
|
|
* @example
|
|
*
|
|
* ```
|
|
* Sentry.logger.fatal('Database connection pool exhausted', {
|
|
* database: 'users',
|
|
* activeConnections: 100,
|
|
* maxConnections: 100
|
|
* });
|
|
* ```
|
|
*
|
|
* @example With template strings
|
|
*
|
|
* ```
|
|
* Sentry.logger.fatal('Database %s: %s connections active',
|
|
* ['connection pool exhausted', '100/100'],
|
|
* { database: 'users' }
|
|
* );
|
|
* ```
|
|
*/
|
|
function fatal(...args) {
|
|
capture.captureLog('fatal', ...args);
|
|
}
|
|
|
|
exports.fmt = core.fmt;
|
|
exports.debug = debug;
|
|
exports.error = error;
|
|
exports.fatal = fatal;
|
|
exports.info = info;
|
|
exports.trace = trace;
|
|
exports.warn = warn;
|
|
//# sourceMappingURL=exports.js.map
|