igir
Version:
🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.
12 lines • 322 B
JavaScript
export const LogLevel = {
TRACE: 1,
DEBUG: 2,
INFO: 3,
WARN: 4,
ERROR: 5,
NOTICE: 6,
ALWAYS: 7, // always print
NEVER: 8, // never print
};
export const LogLevelInverted = Object.fromEntries(Object.entries(LogLevel).map(([key, value]) => [value, key]));
//# sourceMappingURL=logLevel.js.map