A simple logger for all Ribbon Studios Apps & Libraries
import { logger, LogLevel } from '@ribbon-studios/logger';
logger.setLevel(LogLevel.INFO); // This is the default LogLevel
logger.silly('hello', 'world!'); // Outputs nothing since its lower then the configured level!
logger.info('hello', 'world!'); // '[info]: hello world!'
logger.warn('hello', 'world!'); // '[warn]: hello world!'
logger.error('hello', 'world!'); // '[error]: hello world!'