UNPKG

@curvenote/cli

Version:
11 lines (10 loc) 311 B
import { LogLevel } from 'myst-cli-utils'; /** * Duplicated from myst-cli-utils, where function is not exported */ export function getLogLevel(level = LogLevel.info) { if (typeof level === 'number') return level; const useLevel = level ? LogLevel.debug : LogLevel.info; return useLevel; }