mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			377 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			377 B
		
	
	
	
		
			TypeScript
		
	
	
import { exists } from './misc'
 | 
						|
import { LogLevel } from '../../../shared/models/server/log-level.type'
 | 
						|
 | 
						|
const logLevels: LogLevel[] = [ 'debug', 'info', 'warn', 'error' ]
 | 
						|
 | 
						|
function isValidLogLevel (value: any) {
 | 
						|
  return exists(value) && logLevels.includes(value)
 | 
						|
}
 | 
						|
 | 
						|
// ---------------------------------------------------------------------------
 | 
						|
 | 
						|
export {
 | 
						|
  isValidLogLevel
 | 
						|
}
 |