it('should not log "info" when log level is "warn"', () => {
    log.setLevel('warn')
    spyOn(console, 'log')

    log.info('I do nothing!')