fix log example

pull/1296/head
Alexander Medvednikov 2019-07-24 17:59:54 +02:00
parent 94a599d630
commit 505f784047
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import log import log
fn main(){ fn main(){
mut l := log.Log{level:log.INFO, 'terminal'} mut l := log.Log{log.INFO, 'terminal'}
l.info('info') l.info('info')
l.warn('warn') l.warn('warn')
l.error('error') l.error('error')