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>
22 lines
637 B
Text
22 lines
637 B
Text
import type { Logger } from "@smithy/types";
|
|
export type { Logger } from "@smithy/types";
|
|
/**
|
|
* @public
|
|
*
|
|
* A list of logger's log level. These levels are sorted in
|
|
* order of increasing severity. Each log level includes itself and all
|
|
* the levels behind itself.
|
|
*
|
|
* @example `new Logger({logLevel: 'warn'})` will print all the warn and error
|
|
* message.
|
|
*/
|
|
export type LogLevel = "all" | "trace" | "debug" | "log" | "info" | "warn" | "error" | "off";
|
|
/**
|
|
* @public
|
|
*
|
|
* An object consumed by Logger constructor to initiate a logger object.
|
|
*/
|
|
export interface LoggerOptions {
|
|
logger?: Logger;
|
|
logLevel?: LogLevel;
|
|
}
|