1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix log example

This commit is contained in:
Alexander Medvednikov 2019-07-24 17:59:54 +02:00
parent 94a599d630
commit 505f784047

View File

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