Spaces:
Sleeping
Sleeping
File size: 290 Bytes
cfbbc1a | 1 2 3 4 5 6 7 8 9 10 11 | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isLogLevel = isLogLevel;
const logger_service_1 = require("../logger.service");
/**
* @publicApi
*/
function isLogLevel(maybeLogLevel) {
return logger_service_1.LOG_LEVELS.includes(maybeLogLevel);
}
|