UNPKG

@artinet/sdk

Version:
16 lines 490 B
export type LogLevel = "silent" | "error" | "warn" | "info" | "debug" | "trace"; /** * SDK logger instance */ export declare const logger: import("pino").Logger<never, boolean>; /** * Configures the logger with the specified options * * @param options - Logger configuration options */ export declare function configureLogger(options: { level?: LogLevel; name?: string; prettyPrint?: boolean; }): import("pino").Logger<never, boolean>; //# sourceMappingURL=logger.d.ts.map