mirror of
https://github.com/Burn-E99/TheArtificer.git
synced 2026-01-07 04:47:54 -05:00
Log files will now be created locally for easy debugging api.ts, mod.ts, intervals.ts, solver.ts - replaced console.log with utils.log mod.d.ts - made object syntax consistent utils.enums.ts - Created LogTypes enum for utils.log utils.ts - Created initLog and log for logging to files
13 lines
223 B
TypeScript
13 lines
223 B
TypeScript
/* The Artificer was built in memory of Babka
|
|
* With love, Ean
|
|
*
|
|
* December 21, 2020
|
|
*/
|
|
|
|
// enum for all possible console.log types
|
|
export enum LogTypes {
|
|
LOG = "log",
|
|
INFO = "info",
|
|
WARN = "warn",
|
|
ERROR = "error"
|
|
} |