UNPKG

med-log

Version:

Logging package intended for gxp/samd regulated environments hosted in the cloud

12 lines (10 loc) 244 B
const LOGLEVEL_MAX = 5; export enum LogLevel { INFO = "INFO", WARN = "WARN", ERROR = "ERROR" }; export function getLogLevelString(str: string) { str = "[" + str + "]"; return `${str.padEnd(LOGLEVEL_MAX + 2)}`; }