2019-04-10 09:26:33 -04:00
|
|
|
import { exists } from './misc'
|
|
|
|
import { LogLevel } from '../../../shared/models/server/log-level.type'
|
|
|
|
|
|
|
|
const logLevels: LogLevel[] = [ 'debug', 'info', 'warn', 'error' ]
|
|
|
|
|
|
|
|
function isValidLogLevel (value: any) {
|
2020-02-28 10:03:39 -05:00
|
|
|
return exists(value) && logLevels.includes(value)
|
2019-04-10 09:26:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
isValidLogLevel
|
|
|
|
}
|