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>
26 lines
No EOL
1,004 B
Text
26 lines
No EOL
1,004 B
Text
import { Logger } from './types/Logger';
|
|
import { LoggerOptions } from './types/LoggerOptions';
|
|
import { LogRecord } from './types/LogRecord';
|
|
export declare class ProxyLogger implements Logger {
|
|
private _provider;
|
|
readonly name: string;
|
|
readonly version?: string | undefined;
|
|
readonly options?: LoggerOptions | undefined;
|
|
private _delegate?;
|
|
constructor(_provider: LoggerDelegator, name: string, version?: string | undefined, options?: LoggerOptions | undefined);
|
|
/**
|
|
* Emit a log record. This method should only be used by log appenders.
|
|
*
|
|
* @param logRecord
|
|
*/
|
|
emit(logRecord: LogRecord): void;
|
|
/**
|
|
* Try to get a logger from the proxy logger provider.
|
|
* If the proxy logger provider has no delegate, return a noop logger.
|
|
*/
|
|
private _getLogger;
|
|
}
|
|
export interface LoggerDelegator {
|
|
getDelegateLogger(name: string, version?: string, options?: LoggerOptions): Logger | undefined;
|
|
}
|
|
//# sourceMappingURL=ProxyLogger.d.ts.map |