Skip to content

Instantly share code, notes, and snippets.

View limijs's full-sized avatar

Keith H limijs

  • 21:31 (UTC -12:00)
View GitHub Profile
@tracker1
tracker1 / logging.ts
Created August 18, 2021 02:05
TypeScript Standard Loggerr
import fclone from "fclone";
export enum LogLevel {
Fatal = -1,
Error = 0,
Warn = 1,
Info = 2,
Debug = 3,
Trace = 4,
}