@artinet/sdk
Version:
TypeScript SDK for Agentic Communication
16 lines • 490 B
TypeScript
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