@robotical/appv2-analytics-gatherer
Version:
A tool that gathers data from the Apps and sends it to the Analytics server
9 lines (8 loc) • 393 B
TypeScript
declare class Logger {
static info(SHOW_LOGS: boolean, tag: string, ...messages: any[]): void;
static error(SHOW_LOGS: boolean, tag: string, ...messages: any[]): void;
static debug(SHOW_LOGS: boolean, tag: string, ...messages: any[]): void;
static warn(SHOW_LOGS: boolean, tag: string, ...messages: any[]): void;
static VIL(message: string): void;
}
export default Logger;