UNPKG

@caspingus/lt

Version:

A utility library of helpers and extensions useful when working with Learnosity APIs.

26 lines (25 loc) 847 B
//#region src/utils/logger.js function e(...e) { console.debug("%cDebug:", "display:inline-block;background-color:purple;color:#fff;font-weight:bold;padding:3px 7px;border-radius:3px", "", ...e); } function t(...e) { console.error("%cError:", "display:inline-block;background-color:#e0005a;color:#fff;font-weight:bold;padding:3px 7px;border-radius:3px", "", ...e); } function n(...e) { console.info("%cInfo:", "display:inline-block;background-color:#46C0FF;color:#000;font-weight:bold;padding:3px 7px;border-radius:3px", "", ...e); } function r(...e) { console.log(...e); } function i(...e) { console.warn("%cWarning:", "display:inline-block;background-color:gold;color:#000;font-weight:bold;padding:3px 7px;border-radius:3px", "", ...e); } var a = { debug: e, error: t, info: n, log: r, warn: i }; //#endregion export { a as default };