askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
11 lines (10 loc) • 317 B
JavaScript
export var LogLevels;
(function (LogLevels) {
LogLevels["FATAL"] = "fatal";
LogLevels["ERROR"] = "error";
LogLevels["WARN"] = "warn";
LogLevels["INFO"] = "info";
LogLevels["DEBUG"] = "debug";
LogLevels["TRACE"] = "trace";
LogLevels["SILENT"] = "silent";
})(LogLevels || (LogLevels = {}));