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

Restructured termcolor to term module

This commit is contained in:
archanpatkar
2019-07-01 20:39:22 +05:30
committed by Alexander Medvednikov
parent 6ddc57c190
commit 235a7ecd7f
4 changed files with 148 additions and 8 deletions

View File

@ -1,6 +1,6 @@
module log
import termcolor
import term
const (
FATAL = 1
@ -26,28 +26,28 @@ pub fn (l Log) fatal(s string){
pub fn (l Log) error(s string){
if l.level >= ERROR{
f := termcolor.red('E')
f := term.red('E')
println('[$f]$s')
}
}
pub fn (l Log) warn(s string){
if l.level >= WARN{
f := termcolor.yellow('W')
f := term.yellow('W')
println('[$f]$s')
}
}
pub fn (l Log) info(s string){
if l.level >= INFO{
f := termcolor.white('I')
f := term.white('I')
println('[$f]$s')
}
}
pub fn (l Log) debug(s string){
if l.level >= DEBUG{
f := termcolor.blue('D')
f := term.blue('D')
println('[$f]$s')
}
}
}