2021-11-12 23:21:43 +00:00
|
|
|
export function log(type, content) { return content ? console[type](content) : console.info(type); }
|
2019-09-13 20:02:41 +00:00
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export function error(...args) { return log("error", ...args); }
|
2019-09-13 20:02:41 +00:00
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export function warn(...args) { return log("warn", ...args); }
|
2019-09-13 20:02:41 +00:00
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export function debug(...args) { return log("debug", ...args); }
|