UNPKG

jsii-rosetta

Version:

[![Join the chat at https://cdk.Dev](https://img.shields.io/static/v1?label=Slack&message=cdk.dev&color=brightgreen&logo=slack)](https://cdk.dev) [![All Contributors](https://img.shields.io/github/all-contributors/aws/jsii/main?label=%E2%9C%A8%20All%20Con

19 lines 669 B
export declare enum Level { ERROR = -2, WARN = -1, QUIET = 0, INFO = 1, VERBOSE = 2 } export declare const LEVEL_INFO: number; export declare const LEVEL_VERBOSE: number; /** The minimal logging level for messages to be emitted. */ export declare let level: Level; export declare function configure({ level: newLevel }: { level: Level; }): void; export declare function warn(fmt: string, ...args: any[]): void; export declare function error(fmt: string, ...args: any[]): void; export declare function info(fmt: string, ...args: any[]): void; export declare function debug(fmt: string, ...args: any[]): void; //# sourceMappingURL=logging.d.ts.map