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
14 lines (13 loc) • 435 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogLevels = void 0;
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 || (exports.LogLevels = LogLevels = {}));