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

Revert "add log replace color"

This reverts commit 8ef27f0bb3.
This commit is contained in:
Alexander Medvednikov
2019-06-26 01:28:00 +02:00
parent 8ef27f0bb3
commit b00a47be66
4 changed files with 27 additions and 90 deletions

Binary file not shown.

View File

@@ -1,12 +0,0 @@
import log
fn main(){
mut l := log.Log{level:log.INFO}
l.i('info')
l.w('warn')
l.e('error')
l.d('no debug')
l.set_level(log.DEBUG)
l.d('debug')
l.f('fatal')
}