mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
log: enum for logger level
This commit is contained in:
parent
9bfea5e60b
commit
ee52b4166f
@ -1,7 +1,7 @@
|
|||||||
import log
|
import log
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
mut l := log.Log{log.INFO, 'terminal'}
|
mut l := log.Log { log.LogLevel.info, 'info', true }
|
||||||
l.info('info')
|
l.info('info')
|
||||||
l.warn('warn')
|
l.warn('warn')
|
||||||
l.error('error')
|
l.error('error')
|
||||||
|
117
vlib/log/log.v
117
vlib/log/log.v
@ -4,6 +4,25 @@ import os
|
|||||||
import time
|
import time
|
||||||
import term
|
import term
|
||||||
|
|
||||||
|
pub enum LogLevel {
|
||||||
|
fatal
|
||||||
|
error
|
||||||
|
warning
|
||||||
|
info
|
||||||
|
debug
|
||||||
|
}
|
||||||
|
|
||||||
|
fn tag(l LogLevel) string {
|
||||||
|
return match l {
|
||||||
|
.fatal { term.red('F') }
|
||||||
|
.error { term.red('E') }
|
||||||
|
.warning { term.yellow('W') }
|
||||||
|
.info { term.white('I') }
|
||||||
|
.debug { term.blue('D') }
|
||||||
|
else { ' ' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub const (
|
pub const (
|
||||||
FATAL = 1
|
FATAL = 1
|
||||||
ERROR = 2
|
ERROR = 2
|
||||||
@ -22,83 +41,99 @@ interface Logger {
|
|||||||
|
|
||||||
pub struct Log {
|
pub struct Log {
|
||||||
mut:
|
mut:
|
||||||
level int
|
level LogLevel
|
||||||
output string
|
output_label string
|
||||||
|
output_to_file bool
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (l mut Log) set_level(level int){
|
pub fn (l mut Log) set_level(level int){
|
||||||
|
l.level = match level {
|
||||||
|
FATAL { LogLevel.fatal }
|
||||||
|
ERROR { LogLevel.error }
|
||||||
|
WARN { LogLevel.warning }
|
||||||
|
INFO { LogLevel.info }
|
||||||
|
DEBUG { LogLevel.debug }
|
||||||
|
else { .debug }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn (l mut Log) set_output_level(level LogLevel){
|
||||||
l.level = level
|
l.level = level
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (l mut Log) set_output(output string) {
|
pub fn (l mut Log) set_output_label(label string) {
|
||||||
l.output = output
|
l.output_label = label
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (l Log) log_file(s string, e string) {
|
pub fn (l mut Log) set_output(output string){
|
||||||
filename := l.output
|
l.output_label = output
|
||||||
f := os.open_append(l.output) or {
|
}
|
||||||
|
|
||||||
|
fn (l Log) log_file(s string, level LogLevel) {
|
||||||
|
filename := '${l.output_label}.log'.replace(' ', '')
|
||||||
|
f := os.open_append(filename) or {
|
||||||
panic('error reading file $filename')
|
panic('error reading file $filename')
|
||||||
}
|
}
|
||||||
timestamp := time.now().format_ss()
|
timestamp := time.now().format_ss()
|
||||||
|
e := tag(level)
|
||||||
f.writeln('$timestamp [$e] $s')
|
f.writeln('$timestamp [$e] $s')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn (l Log) log_cli(s string, level LogLevel) {
|
||||||
|
f := tag(level)
|
||||||
|
t := time.now()
|
||||||
|
println('[$f ${t.format_ss()}] $s')
|
||||||
|
}
|
||||||
|
|
||||||
pub fn (l Log) fatal(s string){
|
pub fn (l Log) fatal(s string){
|
||||||
panic(s)
|
if l.level == .fatal {
|
||||||
|
if l.output_to_file {
|
||||||
|
l.log_file(s, .fatal)
|
||||||
|
} else {
|
||||||
|
l.log_cli(s, .fatal)
|
||||||
|
}
|
||||||
|
panic('$l.output_label: $s')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (l Log) error(s string){
|
pub fn (l Log) error(s string){
|
||||||
if l.level >= ERROR{
|
if l.level in [.info, .debug, .warning, .error] {
|
||||||
match l.output {
|
if l.output_to_file {
|
||||||
'terminal'{
|
l.log_file(s, .error)
|
||||||
f := term.red('E')
|
|
||||||
t := time.now()
|
|
||||||
println('[$f ${t.format_ss()}] $s')
|
|
||||||
} else {
|
} else {
|
||||||
l.log_file(s, 'E')
|
l.log_cli(s, .error)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (l Log) warn(s string){
|
pub fn (l Log) warn(s string){
|
||||||
if l.level >= WARN{
|
if l.level in [.info, .debug, .warning] {
|
||||||
match l.output {
|
if l.output_to_file {
|
||||||
'terminal'{
|
l.log_file(s, .warning)
|
||||||
f := term.yellow('W')
|
|
||||||
t := time.now()
|
|
||||||
println('[$f ${t.format_ss()}] $s')
|
|
||||||
} else {
|
} else {
|
||||||
l.log_file(s, 'W')
|
l.log_cli(s, .warning)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (l Log) info(s string){
|
pub fn (l Log) info(s string){
|
||||||
if l.level >= INFO{
|
if l.level in [.info, .debug] {
|
||||||
match l.output {
|
if l.output_to_file {
|
||||||
'terminal'{
|
l.log_file(s, .info)
|
||||||
f := term.white('I')
|
|
||||||
t := time.now()
|
|
||||||
println('[$f ${t.format_ss()}] $s')
|
|
||||||
} else {
|
} else {
|
||||||
l.log_file(s, 'I')
|
l.log_cli(s, .info)
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (l Log) debug(s string){
|
pub fn (l Log) debug(s string){
|
||||||
if l.level >= DEBUG{
|
if l.level != .debug {
|
||||||
match l.output {
|
return
|
||||||
'terminal' {
|
}
|
||||||
f := term.blue('D')
|
if l.output_to_file {
|
||||||
t := time.now()
|
l.log_file(s, .debug)
|
||||||
println('[$f ${t.format_ss()}] $s')
|
|
||||||
} else {
|
} else {
|
||||||
l.log_file(s, 'D')
|
l.log_cli(s, .debug)
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user