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>
11 lines
No EOL
631 B
Text
11 lines
No EOL
631 B
Text
import type { Log, LogSeverityLevel, ParameterizedString } from '@sentry/core';
|
|
export type CaptureLogArgs = [message: ParameterizedString, attributes?: Log['attributes']] | [messageTemplate: string, messageParams: Array<unknown>, attributes?: Log['attributes']];
|
|
/**
|
|
* Capture a log with the given level.
|
|
*
|
|
* @param level - The level of the log.
|
|
* @param message - The message to log.
|
|
* @param attributes - Arbitrary structured data that stores information about the log - e.g., userId: 100.
|
|
*/
|
|
export declare function captureLog(level: LogSeverityLevel, ...args: CaptureLogArgs): void;
|
|
//# sourceMappingURL=capture.d.ts.map |